Stub out a method
authorChris Lattner <sabre@nondot.org>
Fri, 27 Jan 2006 02:10:10 +0000 (02:10 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 27 Jan 2006 02:10:10 +0000 (02:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25676 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter.cpp

index cafc87e5cd2b1c6d9a4eef975d24034966ff101e..83ecfe24c30b2c802c088a1a485b2c59766e0cda 100644 (file)
@@ -452,3 +452,9 @@ void AsmPrinter::EmitGlobalConstant(const Constant *CV) {
   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";
+}