diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2011-03-05 18:43:32 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2011-03-05 18:43:32 +0000 |
| commit | e7410dd0d5de4694293900b2f9844813bc1a2419 (patch) | |
| tree | d43b949618208b308b0a6bd62ecf3d82734efb42 /llvm/lib/MC/MCInstPrinter.cpp | |
| parent | 961013686ebf34f7dda928ebd1d4d9eb9005bc63 (diff) | |
| download | bcm5719-llvm-e7410dd0d5de4694293900b2f9844813bc1a2419.tar.gz bcm5719-llvm-e7410dd0d5de4694293900b2f9844813bc1a2419.zip | |
Preliminary support for ARM frame save directives emission via MI flags.
This is just very first approximation how the stuff should be done
(e.g. ARM-only for now). More to follow.
llvm-svn: 127101
Diffstat (limited to 'llvm/lib/MC/MCInstPrinter.cpp')
| -rw-r--r-- | llvm/lib/MC/MCInstPrinter.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCInstPrinter.cpp b/llvm/lib/MC/MCInstPrinter.cpp index 92a71541f5a..212b85eb1fe 100644 --- a/llvm/lib/MC/MCInstPrinter.cpp +++ b/llvm/lib/MC/MCInstPrinter.cpp @@ -19,3 +19,8 @@ MCInstPrinter::~MCInstPrinter() { StringRef MCInstPrinter::getOpcodeName(unsigned Opcode) const { return ""; } + +StringRef MCInstPrinter::getRegName(unsigned RegNo) const { + assert(0 && "Target should implement this"); + return ""; +} |

