diff options
Diffstat (limited to 'test/Transforms/InstCombine/malloc.ll')
-rw-r--r-- | test/Transforms/InstCombine/malloc.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/malloc.ll b/test/Transforms/InstCombine/malloc.ll new file mode 100644 index 0000000..b6ebbea --- /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: opt < %s -instcombine -S | grep getelementptr + +define i32* @test() { + %X = malloc i32, i32 4 + ret i32* %X +} |