Update this to use a "valid" alignment.
authorEric Christopher <echristo@apple.com>
Wed, 21 Jul 2010 04:51:24 +0000 (04:51 +0000)
committerEric Christopher <echristo@apple.com>
Wed, 21 Jul 2010 04:51:24 +0000 (04:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108985 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC/vla-2.c

index d6dda9371f800db226ad0e720000eb2a4f1fc636..555cfc789250beb8cf82efec958050a7228c57b7 100644 (file)
@@ -1,10 +1,10 @@
-// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 32"
+// RUN: %llvmgcc -std=gnu99 %s -S -o - | grep ".*alloca.*align 16"
 
 extern void bar(int[]);
 
 void foo(int a)
 {
-  int var[a] __attribute__((__aligned__(32)));
+  int var[a] __attribute__((__aligned__(16)));
   bar(var);
   return;
 }