aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-15 07:36:19 +0000
committerChris Lattner <sabre@nondot.org>2006-12-15 07:36:19 +0000
commitb1a9492ed71849da285525e5baf1f9688b9f8cf5 (patch)
tree975c04005706ab038d0776a45f7b82f8ef57696f /llvm/lib/CodeGen
parent43662ef02b1633ca33bbac6cb1368006333876f6 (diff)
downloadllvm-b1a9492ed71849da285525e5baf1f9688b9f8cf5.zip
llvm-b1a9492ed71849da285525e5baf1f9688b9f8cf5.tar.gz
llvm-b1a9492ed71849da285525e5baf1f9688b9f8cf5.tar.bz2
silence a bogus warning
llvm-svn: 32597
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index 3a51eb0..49ebec0 100644
--- a/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
@@ -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: