aboutsummaryrefslogtreecommitdiff
path: root/test/builtin-alloca.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/builtin-alloca.c')
-rw-r--r--test/builtin-alloca.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/builtin-alloca.c b/test/builtin-alloca.c
new file mode 100644
index 0000000..f086f19
--- /dev/null
+++ b/test/builtin-alloca.c
@@ -0,0 +1,3 @@
+void f(void) {
+ int *x = __builtin_alloca(32);
+}