projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e736ed1
)
Stub out a method
author
Chris Lattner
<sabre@nondot.org>
Fri, 27 Jan 2006 02:10:10 +0000
(
02:10
+0000)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/lib/CodeGen/AsmPrinter.cpp
b/lib/CodeGen/AsmPrinter.cpp
index cafc87e5cd2b1c6d9a4eef975d24034966ff101e..83ecfe24c30b2c802c088a1a485b2c59766e0cda 100644
(file)
--- 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";
+}