diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index cafc87e5cd2..83ecfe24c30 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -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"; +}