aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/vla-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/vla-2.c')
-rw-r--r--test/FrontendC/vla-2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/FrontendC/vla-2.c b/test/FrontendC/vla-2.c
index d6dda93..555cfc7 100644
--- a/test/FrontendC/vla-2.c
+++ b/test/FrontendC/vla-2.c
@@ -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;
}