diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-07-01 21:35:46 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-07-01 21:35:46 +0000 |
commit | 4c609abd90c12b7eefcae21ec6a0d47e98684878 (patch) | |
tree | 67d8c7f4802cf3326b1f6038091ef4a559a37cbc /llvm/lib | |
parent | 1d952533c201d2dc8c297c71cafbcd850f92d722 (diff) | |
download | bcm5719-llvm-4c609abd90c12b7eefcae21ec6a0d47e98684878.tar.gz bcm5719-llvm-4c609abd90c12b7eefcae21ec6a0d47e98684878.zip |
Eliminate a compile time warning.
llvm-svn: 52982
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 4548894d578..78e640f46b8 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -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: |