diff options
author | Chris Lattner <sabre@nondot.org> | 2006-02-01 01:28:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-02-01 01:28:23 +0000 |
commit | 3a5ed551874fc55f29f309e5373ebd4da6bcf284 (patch) | |
tree | 159883f3a231b374ec36d66712fcb8d570d335c7 /llvm/lib/CodeGen/AsmPrinter.cpp | |
parent | 2a09ffe2f92249e7186b8ea4ffdbde9a3e7e707d (diff) | |
download | bcm5719-llvm-3a5ed551874fc55f29f309e5373ebd4da6bcf284.tar.gz bcm5719-llvm-3a5ed551874fc55f29f309e5373ebd4da6bcf284.zip |
adjust to changes in InlineAsm interface. Fix a few minor bugs.
llvm-svn: 25865
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index df00f47f293..ff021557b23 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/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. + } |