silence a bogus warning

llvm-svn: 32597
This commit is contained in:
Chris Lattner 2006-12-15 07:36:19 +00:00
parent 43662ef02b
commit b1a9492ed7
1 changed files with 1 additions and 1 deletions

View File

@ -3538,7 +3538,7 @@ void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
if (VT == MVT::f32 || VT == MVT::f64) {
// Expand into one or more soft-fp libcall(s).
const char *FnName1 = NULL, *FnName2 = NULL;
ISD::CondCode CC1, CC2;
ISD::CondCode CC1, CC2 = ISD::SETCC_INVALID;
switch (cast<CondCodeSDNode>(CC)->get()) {
case ISD::SETEQ:
case ISD::SETOEQ: