[opaque pointer type] Add textual IR support for explicit type parameter to load...
[oota-llvm.git] / test / Analysis / CFLAliasAnalysis / gep-signed-arithmetic.ll
index eeb423740e6eb6258965c5633cc8084c9c227770..c2fcf32ce06b156a9796c04c3af91e832edf4742 100644 (file)
@@ -11,9 +11,9 @@ define i32 @test(i32 %indvar) nounwind {
   %tmp31 = mul i32 %indvar, -2
   %tmp32 = add i32 %tmp31, 30
   %t.5 = getelementptr i32, i32* %tab, i32 %tmp32
-  %loada = load i32* %tab
+  %loada = load i32, i32* %tab
   store i32 0, i32* %t.5
-  %loadb = load i32* %tab
+  %loadb = load i32, i32* %tab
   %rval = add i32 %loada, %loadb
   ret i32 %rval
 }