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 | 061d9e2cf03fc2219fedbf220bba9bdf6b9dd06d (patch) | |
tree | 3412b4271700bdf564436811989cf47eff2583ab /llvm/lib/CodeGen/AsmPrinter.cpp | |
parent | 6f9cc46ace6ba6636ce186be53aa91b5180cb7f9 (diff) | |
download | bcm5719-llvm-061d9e2cf03fc2219fedbf220bba9bdf6b9dd06d.tar.gz bcm5719-llvm-061d9e2cf03fc2219fedbf220bba9bdf6b9dd06d.zip |
Stub out a method
llvm-svn: 25676
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp index cafc87e5cd2..83ecfe24c30 100644 --- a/llvm/lib/CodeGen/AsmPrinter.cpp +++ b/llvm/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"; +} |