aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-14 21:54:34 +0000
committerChris Lattner <sabre@nondot.org>2010-11-14 21:54:34 +0000
commit959fb3dd5cfaf2aae44321b58ff87dce4632438d (patch)
treed54182e163bb70de579da117e2f19abc4cf209a0 /lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
parentb2e477f5463795de8265939300fb5c0abfdded77 (diff)
downloadexternal_llvm-959fb3dd5cfaf2aae44321b58ff87dce4632438d.zip
external_llvm-959fb3dd5cfaf2aae44321b58ff87dce4632438d.tar.gz
external_llvm-959fb3dd5cfaf2aae44321b58ff87dce4632438d.tar.bz2
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.h')
-rw-r--r--lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h b/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
index b29a2f4..abdc253 100644
--- a/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
+++ b/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
@@ -64,11 +64,11 @@ public:
void printMemRegReg(const MCInst *MI, unsigned OpNo, raw_ostream &O);
// FIXME: Remove
- void PrintSpecial(const MCInst *MI, raw_ostream &O, const char *Modifier) {}
+ void PrintSpecial(const MCInst *MI, raw_ostream &O, const char *Modifier);
void printSymbolLo(const MCInst *MI, unsigned OpNo, raw_ostream &O);
void printSymbolHi(const MCInst *MI, unsigned OpNo, raw_ostream &O);
- void printPICLabel(const MCInst *MI, unsigned OpNo, raw_ostream &O) {}
- void printTOCEntryLabel(const MCInst *MI, unsigned OpNo, raw_ostream &O) {}
+ void printPICLabel(const MCInst *MI, unsigned OpNo, raw_ostream &O);
+ void printTOCEntryLabel(const MCInst *MI, unsigned OpNo, raw_ostream &O);
};
} // end namespace llvm