diff options
author | Chris Lattner <sabre@nondot.org> | 2009-09-16 04:57:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-09-16 04:57:15 +0000 |
commit | 8df79f26811ecc98c9a8b4aefc93fb2abc737d2d (patch) | |
tree | 78e7a326d494aede188f6726afaced8b1c54bb77 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | b15840a6d6496555cdda1124bd739e576d7aa728 (diff) | |
download | bcm5719-llvm-8df79f26811ecc98c9a8b4aefc93fb2abc737d2d.tar.gz bcm5719-llvm-8df79f26811ecc98c9a8b4aefc93fb2abc737d2d.zip |
remove the AsmPrinter::printMCInst hook hack now that
we have MCInstPrinter.
llvm-svn: 82006
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index ef43c352acd..6a9428737fa 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -1711,10 +1711,6 @@ void AsmPrinter::printOffset(int64_t Offset) const { O << Offset; } -void AsmPrinter::printMCInst(const MCInst *MI) { - llvm_unreachable("MCInst printing unavailable on this target!"); -} - GCMetadataPrinter *AsmPrinter::GetOrCreateGCPrinter(GCStrategy *S) { if (!S->usesMetadata()) return 0; |