[autoconf] Export LLVM_LIBDIR_SUFFIX with empty string in LLVMConfig.cmake. tools...
[oota-llvm.git] / test / Feature / undefined.ll
index a71b906dcc0581ee5b4a358e685a5e275c3dff78..e63ce41f681b55f16a0f3ecfd1dd74c9f5902013 100644 (file)
@@ -1,15 +1,17 @@
+; RUN: llvm-as < %s | llvm-dis > %t1.ll
+; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
+; RUN: diff %t1.ll %t2.ll
 
-%X = global int undef
+@X = global i32 undef           ; <i32*> [#uses=0]
 
-implementation
+declare i32 @atoi(i8*)
 
-declare int "atoi"(sbyte *)
-
-int %test() {
-       ret int undef
+define i32 @test() {
+        ret i32 undef
 }
 
-int %test2() {
-       %X = add int undef, 1
-       ret int %X
+define i32 @test2() {
+        %X = add i32 undef, 1           ; <i32> [#uses=1]
+        ret i32 %X
 }
+