Revert the previous check-in. Leave shl x, 1 along for target to deal with.

llvm-svn: 25121
This commit is contained in:
Evan Cheng 2006-01-06 01:56:02 +00:00
parent b03f9b32d2
commit 85c973cda9
1 changed files with 0 additions and 3 deletions

View File

@ -1282,9 +1282,6 @@ SDOperand DAGCombiner::visitSHL(SDNode *N) {
// fold (shl x, 0) -> x
if (N1C && N1C->isNullValue())
return N0;
// fold (shl x, 1) -> (add x, x)
if (N1C && N1C->getValue() == 1)
return DAG.getNode(ISD::ADD, VT, N0, N0);
// if (shl x, c) is known to be zero, return 0
if (N1C && MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits),TLI))
return DAG.getConstant(0, VT);