diff --git a/test/Transforms/InstCombine/malloc.ll b/test/Transforms/InstCombine/malloc.ll new file mode 100644 index 00000000000..3545f3073de --- /dev/null +++ b/test/Transforms/InstCombine/malloc.ll @@ -0,0 +1,7 @@ +; test that malloc's with a constant argument are promoted to array allocations +; RUN: as < %s | opt -instcombine -die | dis | grep getelementptr + +int* %test() { + %X = malloc int, uint 4 + ret int* %X +}