Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Feature / undefined.ll
blobc4848161c6edbaf8051cf3023ed7448a556166ae
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           ; <ptr> [#uses=0]
8 declare i32 @atoi(ptr)
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(ptr)
25 ; CHECK-EMPTY:
26 ; CHECK: define i32 @test() {
27 ; CHECK: {{^[}]}}
28 ; CHECK-EMPTY:
29 ; CHECK: define i32 @test2() {
30 ; CHECK: {{^[}]}}