Fix accidentally committed debug printing

llvm-svn: 248190
This commit is contained in:
Matt Arsenault 2015-09-21 18:21:10 +00:00
parent b68a85d1f6
commit 8fb9b94f7f
1 changed files with 1 additions and 14 deletions

View 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();