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
[committed] Fix minor c6x backend bug exposed by CRC patches
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
align-3.c
blob
217991870f117664c451f07190a12506df4e42a8
1
/* { dg-skip-if "small alignment" { pdp11-*-* } } */
2
3
void
abort
(
void
);
4
5
void
func
(
void
)
__attribute__
((
aligned
(
256
)));
6
7
void
func
(
void
)
8
{
9
}
10
11
int
main
()
12
{
13
if
(
__alignof__
(
func
) !=
256
)
14
abort
();
15
return
0
;
16
}