1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Accidental enable of bad code

llvm-svn: 30601
This commit is contained in:
Jim Laskey 2006-09-25 21:11:32 +00:00
parent 640b7dbed5
commit 6ae9f53d2c

View File

@ -2706,7 +2706,7 @@ SDOperand DAGCombiner::visitSTORE(SDNode *N) {
// If this is a store of a bit convert, store the input value.
// FIXME: This needs to know that the resultant store does not need a
// higher alignment than the original.
if (Value.getOpcode() == ISD::BIT_CONVERT) {
if (0 && Value.getOpcode() == ISD::BIT_CONVERT) {
return DAG.getNode(ISD::STORE, MVT::Other, Chain, Value.getOperand(0),
Ptr, SrcValue);
}