[SystemZ] Clean up warning

Removed (unreachable) default case in switch to clean up warning:

lib/Target/SystemZ/SystemZISelLowering.cpp:1974:5:
error: default label in switch which covers all enumeration values
[-Werror,-Wcovered-switch-default]



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229658 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ulrich Weigand 2015-02-18 09:42:23 +00:00
parent 4e8a4638e9
commit 030d82b502

View File

@ -1969,10 +1969,7 @@ SDValue SystemZTargetLowering::lowerGlobalTLSAddress(GlobalAddressSDNode *Node,
Offset, MachinePointerInfo::getConstantPool(),
false, false, false, 0);
break;
}
default:
llvm_unreachable("Unknown TLS model.");
}
}
// Add the base and offset together.