[llvm-commits] CVS: llvm/lib/CodeGen/AsmPrinter.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Jan 26 18:10:21 PST 2006
Changes in directory llvm/lib/CodeGen:
AsmPrinter.cpp updated: 1.40 -> 1.41
---
Log message:
Stub out a method
---
Diffs of the changes: (+6 -0)
AsmPrinter.cpp | 6 ++++++
1 files changed, 6 insertions(+)
Index: llvm/lib/CodeGen/AsmPrinter.cpp
diff -u llvm/lib/CodeGen/AsmPrinter.cpp:1.40 llvm/lib/CodeGen/AsmPrinter.cpp:1.41
--- llvm/lib/CodeGen/AsmPrinter.cpp:1.40 Thu Jan 26 14:21:46 2006
+++ llvm/lib/CodeGen/AsmPrinter.cpp Thu Jan 26 20:10:10 2006
@@ -452,3 +452,9 @@
EmitConstantValueOnly(CV);
O << "\n";
}
+
+/// printInlineAsm - This method formats and prints the specified machine
+/// instruction that is an inline asm.
+void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
+ O << "INLINE ASM NOT EMITTED YET!\n";
+}
More information about the llvm-commits
mailing list