[MIPS GlobalISel] Remove switch statement (fix r349346 for MSVC)

Temporarily remove switch statement without any case labels 
in function legalizeCustom in order to fix r349346 for MSVC.

llvm-svn: 349356
This commit is contained in:
Petar Avramovic 2018-12-17 15:12:53 +00:00
parent ae3b66b7b0
commit f9c9bc09ab
1 changed files with 1 additions and 6 deletions

View File

@ -67,10 +67,5 @@ bool MipsLegalizerInfo::legalizeCustom(MachineInstr &MI,
MIRBuilder.setInstr(MI);
switch (MI.getOpcode()) {
default:
return false;
}
return true;
return false;
}