Fix accidentally committed debug printing
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 21 Sep 2015 18:21:10 +0000 (18:21 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 21 Sep 2015 18:21:10 +0000 (18:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@248190 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index 24627bcfcad40134facc5821760cbd170191cca4..8b01e0025cf1f4ef127cf5846f1ed1060a1e3aa3 100644 (file)
@@ -11395,20 +11395,7 @@ SDValue DAGCombiner::replaceStoreOfFPConstant(StoreSDNode *ST) {
       Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
                             bitcastToAPInt().getZExtValue(), SDLoc(CFP),
                             MVT::i32);
-      SDValue NewSt = DAG.getStore(Chain, DL, Tmp,
-                                   Ptr, ST->getMemOperand());
-
-      dbgs() << "Replacing FP constant: ";
-      Value->dump(&DAG);
-
-      if (cast<StoreSDNode>(NewSt)->getMemoryVT() != MVT::i32) {
-        dbgs() << "Different memoryvt\n";
-      } else {
-        dbgs() << "same memoryvt\n";
-      }
-
-
-      return NewSt;
+      return DAG.getStore(Chain, DL, Tmp, Ptr, ST->getMemOperand());
     }
 
     return SDValue();