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-bool.cpp
blob
1715822efa137924bada66a9da8af9d58f9b33a5
1
#include <stdio.h>
2
3
static bool
bbb
;
4
5
int
main
(
void
)
6
{
7
printf
(
"+++Bool alignment:
\n
"
);
8
printf
(
"%d
\n
"
,
__alignof__
(
bbb
));
9
return
0
;
10
}