Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / SCCP / apint-load.ll
blobd639f22b7d2e804fc64d4d475199fd5eb9ea2f64
1 ; This test makes sure that these instructions are properly constant propagated.
3 ; RUN: opt < %s -passes=ipsccp -S | not grep load
4 ; RUN: opt < %s -passes=ipsccp -S | not grep fdiv
6 @X = constant i212 42
7 @Y = constant [2 x { i212, float }] [ { i212, float } { i212 12, float 1.0 }, 
8                                      { i212, float } { i212 37, float 0x3FF3B2FEC0000000 } ]
9 define i212 @test1() {
10         %B = load i212, ptr @X
11         ret i212 %B
14 define internal float @test2() {
15         %A = getelementptr [2 x { i212, float}], ptr @Y, i32 0, i32 1, i32 1
16         %B = load float, ptr %A
17         ret float %B
20 define internal i212 @test3() {
21         %A = getelementptr [2 x { i212, float}], ptr @Y, i32 0, i32 0, i32 0
22         %B = load i212, ptr %A
23         ret i212 %B
26 define float @All()
28    %A = call float @test2()
29    %B = call i212 @test3()
30    %C = mul i212 %B, -1234567
31    %D = sitofp i212 %C to float
32    %E = fdiv float %A, %D
33    ret float %E