fit in 80 cols
authorChris Lattner <sabre@nondot.org>
Tue, 12 Dec 2006 05:22:21 +0000 (05:22 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 12 Dec 2006 05:22:21 +0000 (05:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32474 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/LegalizeDAG.cpp

index b4f25f5cdffb37b18ddb3250ff1d876b26717a3c..c0ad928e7a33508d51eb6914f374ec4f023497e0 100644 (file)
@@ -790,7 +790,7 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
           // Only do this if the target has a native EXTLOAD instruction from
           // f32.
           TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
-        LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, Type::FloatTy));
+        LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
         VT = MVT::f32;
         Extend = true;
       }