Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
enum2.c
blob: 575cc5ce08680a84836d6621bdb16597d3253763 [
file
] [
log
] [
blame
]
/* { dg-options "-fshort-enums" } */
/* Check that "-fshort-enums" packs enumeration tyes into a minimal
number of bytes.. */
enum
e
{
e_1
};
extern
int
i
[
sizeof
(
enum
e
)];
int
i
[
1
];