Testcase for llvm-gcc commit r108910.
authorEric Christopher <echristo@apple.com>
Tue, 20 Jul 2010 20:32:47 +0000 (20:32 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 20 Jul 2010 20:32:47 +0000 (20:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108918 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC/vla-2.c [new file with mode: 0644]

diff --git a/test/FrontendC/vla-2.c b/test/FrontendC/vla-2.c
new file mode 100644 (file)
index 0000000..d6dda93
--- /dev/null
@@ -0,0 +1,10 @@
+// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
+
+extern void bar(int[]);
+
+void foo(int a)
+{
+  int var[a] __attribute__((__aligned__(32)));
+  bar(var);
+  return;
+}