Use the llvm-upgrade program to upgrade llvm assembly.
[oota-llvm.git] / test / Transforms / InstCombine / malloc.ll
1 ; test that malloc's with a constant argument are promoted to array allocations
2 ; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep getelementptr
3
4 int* %test() {
5         %X = malloc int, uint 4
6         ret int* %X
7 }