Uncomment LLVM_FALLTHROUGH.

llvm-svn: 360798
This commit is contained in:
Pete Couperus 2019-05-15 19:46:17 +00:00
parent a4d29b8e20
commit 1ca049959f
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ static bool isAddConstantOp(const MachineInstr &MI, int64_t &Amount) {
switch (MI.getOpcode()) {
case ARC::SUB_rru6:
Sign = -1;
// LLVM_FALLTHROUGH
LLVM_FALLTHROUGH;
case ARC::ADD_rru6:
assert(MI.getOperand(2).isImm() && "Expected immediate operand");
Amount = Sign * MI.getOperand(2).getImm();