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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
consistency.vlad
/
layout
/
align-longdouble.c
blob
7617aced2665162f7df1d569bf54ae4ea9216ab6
1
#include <stdio.h>
2
3
static long double
ld
;
4
5
int
main
(
void
)
6
{
7
printf
(
"+++Long Double alignment:
\n
"
);
8
printf
(
"%d
\n
"
,
__alignof__
(
ld
));
9
return
0
;
10
}