[DAG] visitSHL - use FoldConstantArithmetic to fold constants in (shl (add x,...
[DAG] visitSHL - use FoldConstantArithmetic to fold constants in (shl (add x, c1), c2) -> (add (shl x, c2), c1 << c2) fold Matches what we do in the (shl (mul x, c1), c2) -> (mul x, c1 << c2) fold as well as inside visitShiftByConstant
Loading
Please sign in to comment