1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-03 14:31:10 +00:00

Balance parentheses.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130489 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2011-04-29 08:41:23 +00:00
parent c2e31c1461
commit 3224806109

@ -645,7 +645,7 @@ Instruction *InstCombiner::visitShl(BinaryOperator &I) {
}
}
// (C1 << A) << C2) -> (C1 << C2) << A)
// (C1 << A) << C2 -> (C1 << C2) << A
Constant *C1, *C2;
Value *A;
if (match(I.getOperand(0), m_OneUse(m_Shl(m_Constant(C1), m_Value(A)))) &&