Replacing an empty switch with its moral equivalent. No functional changes intended.

llvm-svn: 186017
This commit is contained in:
Aaron Ballman 2013-07-10 17:19:22 +00:00
parent 4d08d8bada
commit f04bbd8b7f
2 changed files with 2 additions and 8 deletions

View File

@ -54,11 +54,7 @@ static MCSubtargetInfo *createMBlazeMCSubtargetInfo(StringRef TT, StringRef CPU,
}
static MCAsmInfo *createMCAsmInfo(const MCRegisterInfo &MRI, StringRef TT) {
Triple TheTriple(TT);
switch (TheTriple.getOS()) {
default:
return new MBlazeMCAsmInfo();
}
return new MBlazeMCAsmInfo();
}
static MCCodeGenInfo *createMBlazeMCCodeGenInfo(StringRef TT, Reloc::Model RM,

View File

@ -114,9 +114,7 @@ bool R600InstrInfo::isPlaceHolderOpcode(unsigned Opcode) const {
}
bool R600InstrInfo::isReductionOp(unsigned Opcode) const {
switch(Opcode) {
default: return false;
}
return false;
}
bool R600InstrInfo::isCubeOp(unsigned Opcode) const {