From a2259fcf6840ed3b93e155af7089772e08bf306e Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Mon, 21 Sep 2015 18:21:10 +0000 Subject: [PATCH] Fix accidentally committed debug printing git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@248190 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 24627bcfcad..8b01e0025cf 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -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(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(); -- 2.11.0