[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Feature / undefined.ll
blobe01ed4c0f9c44151f8cf3cb659b7f057c6a7d1ac
1 ; RUN: llvm-as < %s | llvm-dis > %t1.ll
2 ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3 ; RUN: diff %t1.ll %t2.ll
4 ; RUN: FileCheck %s < %t1.ll
6 @X = global i32 undef           ; <i32*> [#uses=0]
8 declare i32 @atoi(i8*)
10 define i32 @test() {
11         ret i32 undef
14 define i32 @test2() {
15         %X = add i32 undef, 1           ; <i32> [#uses=1]
16         ret i32 %X
20 ; Check that there is a newline between functions.
22 ; CHECK: @X = global
23 ; CHECK-EMPTY:
24 ; CHECK: declare i32 @atoi(i8*)
25 ; CHECK-EMPTY:
26 ; CHECK: define i32 @test() {
27 ; CHECK: {{^[}]}}
28 ; CHECK-EMPTY:
29 ; CHECK: define i32 @test2() {
30 ; CHECK: {{^[}]}}