Accidental enable of bad code
authorJim Laskey <jlaskey@mac.com>
Mon, 25 Sep 2006 21:11:32 +0000 (21:11 +0000)
committerJim Laskey <jlaskey@mac.com>
Mon, 25 Sep 2006 21:11:32 +0000 (21:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30601 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index e4fdedf6361b386fd879321b40bbafa631fa2f3e..fbc4257263b91de7566dd8e7188f0e06d439c39e 100644 (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);
   }