aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-02-01 01:28:23 +0000
committerChris Lattner <sabre@nondot.org>2006-02-01 01:28:23 +0000
commit2cc2f66c25d9576743026688fdae5ed402726532 (patch)
tree61e900d48a8db9087d4b72deaa085b542b82be91 /lib/CodeGen/AsmPrinter.cpp
parente202a253b1f28a564adf994154df3ea23c841afb (diff)
adjust to changes in InlineAsm interface. Fix a few minor bugs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp
index df00f47f29..ff021557b2 100644
--- a/lib/CodeGen/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter.cpp
@@ -472,4 +472,8 @@ void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
const char *AsmStr = MI->getOperand(NumDefs).getSymbolName();
O << AsmStr << "\n";
+
+ // Use a virtual "printAsmOperand" method, which takes the constraint
+ // string? Must pass the constraint string to here if needed.
+
}