blob: 3a413d409f577c438db4dd9a344c985baf617da0 [file] [log] [blame]
Reid Spencerc0948362007-01-16 18:08:22 +00001; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
2; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
3; RUN: diff %t1.ll %t2.ll
4
5
6%X = global i32 undef
7
8implementation
9
10declare i32 "atoi"(i8 *)
11
12define i32 %test() {
13 ret i32 undef
14}
15
16define i32 %test2() {
17 %X = add i32 undef, 1
18 ret i32 %X
19}