Renamed `as' => `llvm-as', `dis' => `llvm-dis', `link' => `llvm-link'.
[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-as < %s | opt -instcombine -die | llvm-dis | grep getelementptr
3
4 int* %test() {
5         %X = malloc int, uint 4
6         ret int* %X
7 }