[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Transforms / SCCP / apint-bigarray.ll
blobde4379bf3b5e2597ee5eda04f77a25fd2a41d9e9
1 ; RUN: opt < %s -passes=sccp -S | not grep %X
3 @G =  global [1000000 x i10000] zeroinitializer
5 define internal i10000* @test(i10000 %Arg) {
6         %X = getelementptr [1000000 x i10000], [1000000 x i10000]* @G, i32 0, i32 999
7         store i10000 %Arg, i10000* %X
8         ret i10000* %X
11 define i10000 @caller()
13         %Y = call i10000* @test(i10000 -1)
14         %Z = load i10000, i10000* %Y
15         ret i10000 %Z 
18 define i10000 @caller2()
20         %Y = call i10000* @test(i10000 1)
21         %Z = load i10000, i10000* %Y
22         ret i10000 %Z