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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
stackalign
/
pr16660-3.c
blob
1c1ddd1dd74c48e0ba84baf2a4bf0fddc1bc245c
1
/* { dg-do run } */
2
3
#include
"check.h"
4
5
typedef
__SIZE_TYPE__
size_t
;
6
#define ALIGNMENT 256
7
int
main
(
void
)
8
{
9
int
a
[
ALIGNMENT
/
sizeof
(
int
)]
__attribute__
((
aligned
(
ALIGNMENT
)));
10
check
(&
a
,
ALIGNMENT
);
11
int
b
[
ALIGNMENT
/
sizeof
(
int
)]
__attribute__
((
aligned
(
ALIGNMENT
)));
12
check
(&
b
,
ALIGNMENT
);
13
return
0
;
14
}