From: Matt Arsenault Date: Mon, 21 Sep 2015 18:21:10 +0000 (+0000) Subject: Fix accidentally committed debug printing X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a2259fcf6840ed3b93e155af7089772e08bf306e;p=oota-llvm.git Fix accidentally committed debug printing git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@248190 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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();