diff options
author | Nirav Dave <niravd@google.com> | 2018-08-16 17:22:31 +0000 |
---|---|---|
committer | Nirav Dave <niravd@google.com> | 2018-08-16 17:22:31 +0000 |
commit | eb189a0ef77b6399b822de2a4e8847e573c50702 (patch) | |
tree | 111d9e114faa9f3af058e94c207e23dc8788f46b | |
parent | ebf9607d7dd01dcbbe0054868ce3c7672bde3fce (diff) | |
download | bcm5719-llvm-eb189a0ef77b6399b822de2a4e8847e573c50702.tar.gz bcm5719-llvm-eb189a0ef77b6399b822de2a4e8847e573c50702.zip |
[MC] Cleanup noop default case spelling. NFC.
llvm-svn: 339906
-rw-r--r-- | llvm/lib/MC/MCExpr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCExpr.cpp b/llvm/lib/MC/MCExpr.cpp index 638cb35da74..c3cb3edd383 100644 --- a/llvm/lib/MC/MCExpr.cpp +++ b/llvm/lib/MC/MCExpr.cpp @@ -762,7 +762,7 @@ bool MCExpr::evaluateAsRelocatableImpl(MCValue &Res, const MCAssembler *Asm, case MCBinaryExpr::NE: Res = MCValue::get((R->isEqualTo(R)) ? 0 : -1); return true; - default: {} + default: break; } } return false; |