repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
stackalign
/
pr16660-1.c
blob
459b3df26964a63412f0823cbbc0cf2216cb978c
1
/* { dg-do run } */
2
/* { dg-skip-if "Stack alignment is too small" { hppa*-*-hpux* } } */
3
/* { dg-skip-if "Stack alignment causes use of alloca" { nvptx-*-* } } */
4
5
#include
"check.h"
6
7
void
8
f
()
9
{
10
unsigned long
tmp
[
4
]
__attribute__
((
aligned
(
64
)));
11
check
(&
tmp
,
64
);
12
}
13
14
int
15
main
()
16
{
17
f
();
18
return
0
;
19
}