mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-09 05:13:01 +00:00
Eliminate a compile time warning.
llvm-svn: 52982
This commit is contained in:
parent
8564cd9dfe
commit
8a30a09180
@ -4669,7 +4669,7 @@ void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
|
||||
MVT VT = LHS.getValueType();
|
||||
if (VT == MVT::f32 || VT == MVT::f64) {
|
||||
// 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()) {
|
||||
case ISD::SETEQ:
|
||||
case ISD::SETOEQ:
|
||||
|
Loading…
Reference in New Issue
Block a user