From fed5577066aa13948745415316ebad1c2e72507e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 23 Jan 2005 23:19:44 +0000 Subject: [PATCH] Silence optimized warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19797 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 75d19623f12..74f1c5526a0 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -1454,7 +1454,7 @@ ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) { SDOperand InChain = FindInputOutputChains(Source.Val, OutChain, DAG.getEntryNode()); - const char *FnName; + const char *FnName = 0; if (isSigned) { if (DestTy == MVT::f32) FnName = "__floatdisf";