Stub out a method
llvm-svn: 25676
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp
index cafc87e..83ecfe2 100644
--- a/llvm/lib/CodeGen/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter.cpp
@@ -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";
+}