forked from OSchip/llvm-project
Removing a switch statement that contains only a default label. This resolves an MSVC warning. No functional change intended.
llvm-svn: 193649
This commit is contained in:
parent
9385f9f7c3
commit
9ab670fb54
|
@ -121,8 +121,6 @@ AMDGPUInstrInfo::loadRegFromStackSlot(MachineBasicBlock &MBB,
|
|||
bool AMDGPUInstrInfo::expandPostRAPseudo (MachineBasicBlock::iterator MI) const {
|
||||
MachineBasicBlock *MBB = MI->getParent();
|
||||
|
||||
switch(MI->getOpcode()) {
|
||||
default:
|
||||
if (isRegisterLoad(*MI)) {
|
||||
unsigned RegIndex = MI->getOperand(2).getImm();
|
||||
unsigned Channel = MI->getOperand(3).getImm();
|
||||
|
@ -151,7 +149,6 @@ bool AMDGPUInstrInfo::expandPostRAPseudo (MachineBasicBlock::iterator MI) const
|
|||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
MBB->erase(MI);
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue