diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-11-19 00:05:15 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-11-19 00:05:15 +0000 |
commit | d1fadd8c5d6a4e953323690860ba90e63d04cd2c (patch) | |
tree | 718c65b12ce44b6df5e14f042b635b75e496b2c4 | |
parent | 50d0f5894448aff6eb02ad63da55ecf26b54aeb8 (diff) |
An 'unreachable' shouldn't have a '0 &&' prefix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119762 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMMCCodeEmitter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMMCCodeEmitter.cpp b/lib/Target/ARM/ARMMCCodeEmitter.cpp index 6592dcfebe..8cf31e70cb 100644 --- a/lib/Target/ARM/ARMMCCodeEmitter.cpp +++ b/lib/Target/ARM/ARMMCCodeEmitter.cpp @@ -421,8 +421,8 @@ getMovtImmOpValue(const MCInst &MI, unsigned OpIdx, } Fixups.push_back(MCFixup::Create(0, Expr, Kind)); return 0; - }; - llvm_unreachable(0 && "Unsupported MCExpr type in MCOperand"); + } + llvm_unreachable("Unsupported MCExpr type in MCOperand"); return 0; } |