diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-07-08 20:18:13 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-07-08 20:18:13 +0000 |
commit | dbdff47cb36eae12184c4e1a8fc07cfad26011c1 (patch) | |
tree | 3daf910b1fcacaae7dca2526c53185442b413330 /llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | |
parent | 3840c90f73c626407a46ef1e009ca8bd0fdacfae (diff) | |
download | bcm5719-llvm-dbdff47cb36eae12184c4e1a8fc07cfad26011c1.tar.gz bcm5719-llvm-dbdff47cb36eae12184c4e1a8fc07cfad26011c1.zip |
Silence compiler warning.
llvm-svn: 134730
Diffstat (limited to 'llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp index 11ad5267638..41c1dd3919b 100644 --- a/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp +++ b/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp @@ -15,6 +15,7 @@ #include "MipsInstPrinter.h" #include "llvm/MC/MCExpr.h" #include "llvm/MC/MCInst.h" +#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include "llvm/ADT/StringExtras.h" using namespace llvm; @@ -57,6 +58,7 @@ const char* Mips::MipsFCCToString(Mips::CondCode CC) { case FCOND_NGT: case FCOND_GT: return "ngt"; } + llvm_unreachable("Impossible condition code!"); } StringRef MipsInstPrinter::getOpcodeName(unsigned Opcode) const { |