Eliminate a compile time warning.

llvm-svn: 52982
This commit is contained in:
Evan Cheng 2008-07-01 21:35:46 +00:00
parent 1d952533c2
commit 4c609abd90
1 changed files with 1 additions and 1 deletions

View File

@ -4669,7 +4669,7 @@ void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
MVT VT = LHS.getValueType(); MVT VT = LHS.getValueType();
if (VT == MVT::f32 || VT == MVT::f64) { if (VT == MVT::f32 || VT == MVT::f64) {
// Expand into one or more soft-fp libcall(s). // Expand into one or more soft-fp libcall(s).
RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL; RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
switch (cast<CondCodeSDNode>(CC)->get()) { switch (cast<CondCodeSDNode>(CC)->get()) {
case ISD::SETEQ: case ISD::SETEQ:
case ISD::SETOEQ: case ISD::SETOEQ: