summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-07-20 20:32:47 +0000
committerEric Christopher <echristo@apple.com>2010-07-20 20:32:47 +0000
commitde8d40503ecf8cee9e33d59a1139cac855f652ff (patch)
tree9c30451387f84b7d087fcbe131299eb620a615af
parenta09e67af330d11f32c40f04b06c899746fc396ee (diff)
downloadllvm-de8d40503ecf8cee9e33d59a1139cac855f652ff.tar.gz
llvm-de8d40503ecf8cee9e33d59a1139cac855f652ff.tar.bz2
llvm-de8d40503ecf8cee9e33d59a1139cac855f652ff.tar.xz
Testcase for llvm-gcc commit r108910.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108918 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/FrontendC/vla-2.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FrontendC/vla-2.c b/test/FrontendC/vla-2.c
new file mode 100644
index 0000000000..d6dda9371f
--- /dev/null
+++ b/test/FrontendC/vla-2.c
@@ -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;
+}