diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-11-14 21:54:34 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-11-14 21:54:34 +0000 |
| commit | 959fb3dd5cfaf2aae44321b58ff87dce4632438d (patch) | |
| tree | d54182e163bb70de579da117e2f19abc4cf209a0 /lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | |
| parent | b2e477f5463795de8265939300fb5c0abfdded77 (diff) | |
make the stubbed-out printer methods abort instead of
printing nothing. This gets us back up to 24 failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp')
| -rw-r--r-- | lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp b/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp index 607eb4fb2d..22907f52da 100644 --- a/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp +++ b/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp @@ -282,3 +282,18 @@ void PPCInstPrinter::printSymbolHi(const MCInst *MI, unsigned OpNo, else printOperand(MI, OpNo, O); } + + +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"); +} + |
