Merging r257940:
[oota-llvm.git] / test / Transforms / GVN / null-aliases-nothing.ll
index 0826f9e663ffc684c2ad22df8f8e58760fd02413..0b7c5eb5bf95561e994348a074f59b463d847b58 100644 (file)
@@ -5,11 +5,11 @@ declare void @test1f(i8*)
 
 define void @test1(%t* noalias %stuff ) {
     %p = getelementptr inbounds %t, %t* %stuff, i32 0, i32 0
-    %before = load i32* %p
+    %before = load i32, i32* %p
 
     call void @test1f(i8* null)
 
-    %after = load i32* %p ; <--- This should be a dead load
+    %after = load i32, i32* %p ; <--- This should be a dead load
     %sum = add i32 %before, %after
 
     store i32 %sum, i32* %p