Back out fold (shl (add x, c1), c2) -> (add (shl x, c2), c1<<c2) for now.
authorEvan Cheng <evan.cheng@apple.com>
Sun, 5 Mar 2006 07:30:16 +0000 (07:30 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Sun, 5 Mar 2006 07:30:16 +0000 (07:30 +0000)
It's causing an infinite loop compiling ldecod on x86 / Darwin.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26544 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/DAGCombiner.cpp

index 1e05d583e8374ef3fa3b61b1a2731e01da2ca1cc..bf4b39db07b7c0e18b7cf562e4127bc2c928a01e 100644 (file)
@@ -1454,13 +1454,6 @@ SDOperand DAGCombiner::visitSHL(SDNode *N) {
   if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
     return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
                        DAG.getConstant(~0ULL << N1C->getValue(), VT));
-  // fold (shl (add x, c1), c2) -> (add (shl x, c2), c1<<c2)
-  if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() && 
-      isa<ConstantSDNode>(N0.getOperand(1))) {
-    return DAG.getNode(ISD::ADD, VT, 
-                       DAG.getNode(ISD::SHL, VT, N0.getOperand(0), N1),
-                       DAG.getNode(ISD::SHL, VT, N0.getOperand(1), N1));
-  }
   return SDOperand();
 }