Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / InstCombine / odr-linkage.ll
blob280213c0114ec1210929457399a4efb93d950dea
1 ; RUN: opt < %s -passes=instcombine -S | grep "ret i32 10"
3 @g1 = available_externally constant i32 1
4 @g2 = linkonce_odr constant i32 2
5 @g3 = weak_odr constant i32 3
6 @g4 = internal constant i32 4
8 define i32 @test() {
9   %A = load i32, ptr @g1
10   %B = load i32, ptr @g2
11   %C = load i32, ptr @g3
12   %D = load i32, ptr @g4
13   
14   %a = add i32 %A, %B
15   %b = add i32 %a, %C
16   %c = add i32 %b, %D
17   ret i32 %c
19