From: Eric Christopher Date: Wed, 21 Jul 2010 04:51:24 +0000 (+0000) Subject: Update this to use a "valid" alignment. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=302313fc0923fb3cc142e3a37c54e5f0f5ebdaa4;p=oota-llvm.git Update this to use a "valid" alignment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108985 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/FrontendC/vla-2.c b/test/FrontendC/vla-2.c index d6dda9371f8..555cfc78925 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; }