Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / InstCombine / 2003-10-23-InstcombineNullFail.ll
index 01231260344070f7ab7cbd63c226427981347590..7daf7cb632bb5f91e4bd93ab611a1daa75717db2 100644 (file)
@@ -2,12 +2,11 @@
 ;
 ; This actually looks like a constant propagation bug
 
-%X = type { [10 x int], float }
+%X = type { [10 x i32], float }
 
-implementation
-
-bool %test() {
-       %A = getelementptr %X* null, long 0, ubyte 0, long 0
-       %B = setne int* %A, null
-       ret bool %B
+define i1 @test() {
+        %A = getelementptr %X* null, i64 0, i32 0, i64 0                ; <i32*> [#uses=1]
+        %B = icmp ne i32* %A, null              ; <i1> [#uses=1]
+        ret i1 %B
 }
+