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
* gcc.dg/torture/stackalign/builtin-apply-2.c: Fix skip-if syntax.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
bitfld-19.c
blob
072e93c2ae9e72e6638a2fe6889e2182d9d3a628
1
/* Test for bit-field widths not integer constant expressions but
2
folding to integer constants: PR 42439. */
3
/* { dg-do compile } */
4
/* { dg-options "-O2" } */
5
6
void
7
f
(
void
)
8
{
9
const int
m
=
1
;
10
((
void
)(
sizeof
(
struct
{
int
i
:!!
m
; })));
11
}