repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
bitfield5.C
blob
b8cd4dd206a30bf62cd8e6b2a7ac11b44037cc1d
1
// PR c++/70285
2
3
int a;
4
5
struct S
6
{
7
int i:8;
8
} b;
9
10
int
11
fn1 (bool x)
12
{
13
(&fn1 ? b.i : a) = 42;
14
return (&fn1 ? b.i : a);
15
}