Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / InstCombine / malloc.ll
index 34fdfe862e826d872a45cdf020909f1e0d1af25a..6a4601a2ebeeef720eef3cae6209fa1839321e4d 100644 (file)
@@ -1,7 +1,7 @@
 ; test that malloc's with a constant argument are promoted to array allocations
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep getelementptr
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep getelementptr
 
-int* %test() {
-       %X = malloc int, uint 4
-       ret int* %X
+define i32* @test() {
+       %X = malloc i32, i32 4
+       ret i32* %X
 }