aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Transforms/InstCombine/malloc.ll7
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 0000000000..3545f3073d
--- /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
+}