diff options
author | Chris Lattner <sabre@nondot.org> | 2010-11-15 03:48:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-11-15 03:48:58 +0000 |
commit | aa4d03d1f55671613e9290a061def429319b0d51 (patch) | |
tree | 26bd158adffbfd9427e893555f021e7c0a5e8c6f /llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | |
parent | 8bcfdab194f2d846060d4a488565678915e0a31f (diff) | |
download | bcm5719-llvm-aa4d03d1f55671613e9290a061def429319b0d51.tar.gz bcm5719-llvm-aa4d03d1f55671613e9290a061def429319b0d51.zip |
remove asmstrings (which can never be printed) from pseudo
instructions, allowing is to eliminate some dead operand
printing methods from the instprinter.
llvm-svn: 119113
Diffstat (limited to 'llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp index 0af16cfc8e3..1cd3f00f203 100644 --- a/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp +++ b/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp @@ -302,16 +302,3 @@ void PPCInstPrinter::printSymbolHi(const MCInst *MI, unsigned OpNo, } -void PPCInstPrinter::PrintSpecial(const MCInst *MI, raw_ostream &O, - const char *Modifier) { - assert(0 && "FIXME: PrintSpecial should be dead"); -} -void PPCInstPrinter::printPICLabel(const MCInst *MI, unsigned OpNo, - raw_ostream &O) { - assert(0 && "FIXME: printPICLabel should be dead"); -} -void PPCInstPrinter::printTOCEntryLabel(const MCInst *MI, unsigned OpNo, - raw_ostream &O) { - assert(0 && "FIXME: printTOCEntryLabel should be dead"); -} - |