Skip to content
This repository was archived by the owner on Mar 28, 2020. It is now read-only.

Commit 78886ec

Browse files
committed
[SystemZ] Fix build break from r265689
Fix build error seen on some build bots due to: error: default label in switch which covers all enumeration values git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265693 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent d393432 commit 78886ec

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/Target/SystemZ/SystemZInstrInfo.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,9 +1334,8 @@ unsigned SystemZInstrInfo::getCompareAndBranch(unsigned Opcode,
13341334
default:
13351335
return 0;
13361336
}
1337-
default:
1338-
return 0;
13391337
}
1338+
return 0;
13401339
}
13411340

13421341
void SystemZInstrInfo::loadImmediate(MachineBasicBlock &MBB,

0 commit comments

Comments
 (0)