projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7d7d15a
)
Update this to use a "valid" alignment.
author
Eric Christopher
<echristo@apple.com>
Wed, 21 Jul 2010 04:51:24 +0000
(
04:51
+0000)
committer
Eric 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
patch
|
blob
|
history
diff --git
a/test/FrontendC/vla-2.c
b/test/FrontendC/vla-2.c
index d6dda9371f800db226ad0e720000eb2a4f1fc636..555cfc789250beb8cf82efec958050a7228c57b7 100644
(file)
--- 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;
}