diff options
author | Chris Lattner <sabre@nondot.org> | 2006-01-27 02:10:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-01-27 02:10:10 +0000 |
commit | 0264d1a4777370009176157b76d116b3195e3767 (patch) | |
tree | 03274e67679d6dddc75ff6171a42d62de4b40ce2 | |
parent | e736ed19478f05811f08a56706e07fa4ab865401 (diff) |
Stub out a method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25676 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/AsmPrinter.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index cafc87e5cd..83ecfe24c3 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"; +} |