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
2008-03-21 Janne Blomqvist <jb@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
enum2.c
blob
575cc5ce08680a84836d6621bdb16597d3253763
1
/* { dg-options "-fshort-enums" } */
2
/* Check that "-fshort-enums" packs enumeration tyes into a minimal
3
number of bytes.. */
4
5
enum
e
{
e_1
};
6
7
extern
int
i
[
sizeof
(
enum
e
)];
8
int
i
[
1
];