mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
add a minor dag combine noticed when looking at PR945
llvm-svn: 30915
This commit is contained in:
parent
76d365ac84
commit
e38ce54cc9
@ -1664,6 +1664,13 @@ SDOperand DAGCombiner::visitSRL(SDNode *N) {
|
||||
return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
|
||||
}
|
||||
|
||||
// fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
|
||||
// bit, which is unmodified by sra.
|
||||
if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
|
||||
if (N0.getOpcode() == ISD::SRA)
|
||||
return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
|
||||
}
|
||||
|
||||
// fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
|
||||
if (N1C && N0.getOpcode() == ISD::CTLZ &&
|
||||
N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
|
||||
|
Loading…
Reference in New Issue
Block a user