Fix PR17952.
[oota-llvm.git] / test / Integer / undefined_bt.ll
index 3a413d409f577c438db4dd9a344c985baf617da0..7eba59039b956513b458a8828502be2771125495 100644 (file)
@@ -3,17 +3,16 @@
 ; RUN: diff %t1.ll %t2.ll
 
 
-%X = global i32 undef
+@X = global i31 undef
 
-implementation
 
-declare i32 "atoi"(i8 *)
+declare i32 @"atoi"(i8 *)
 
-define i32 %test() {
-       ret i32 undef
+define i63 @test() {
+       ret i63 undef
 }
 
-define i32 %test2() {
-       %X = add i32 undef, 1
-       ret i32 %X
+define i31 @test2() {
+       %X = add i31 undef, 1
+       ret i31 %X
 }