Removed useless switch for default case when switch was covering all the enum values

llvm-svn: 153984
This commit is contained in:
Pete Cooper 2012-04-04 00:53:04 +00:00
parent 9781893507
commit e7bff68a5e
1 changed files with 0 additions and 1 deletions

View File

@ -235,7 +235,6 @@ SDValue DAGTypeLegalizer::ScalarizeVecRes_VSELECT(SDNode *N) {
if (ScalarBool != VecBool) {
EVT CondVT = Cond.getValueType();
switch (ScalarBool) {
default: llvm_unreachable("Unknown boolean content enum");
case TargetLowering::UndefinedBooleanContent:
break;
case TargetLowering::ZeroOrOneBooleanContent: