[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / Reassociate / min_int.ll
blob364e89153d4212f52629a8b04aa4fc183deada4c
1 ; RUN: opt < %s -passes=reassociate,dce -S | FileCheck %s
3 ; MIN_INT cannot be negated during reassociation
5 define i32 @minint(i32 %i) {
6 ; CHECK:  %mul = mul i32 %i, -2147483648
7 ; CHECK-NEXT:  %add = add i32 %mul, 1
8 ; CHECK-NEXT:  ret i32 %add
9   %mul = mul i32 %i, -2147483648
10   %add = add i32 %mul, 1
11   ret i32 %add