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
Implement C _FloatN, _FloatNx types.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr71059.c
blob
7c0ab7f14932c265563e46d7981cee6940f0e484
1
/* { dg-do compile } */
2
3
short
a
,
c
;
4
union
{
5
unsigned
f0
;
6
unsigned short
f1
;
7
}
b
;
8
volatile
int
d
;
9
short
fn1
(
short
p1
) {
return
p1
+
a
; }
10
void
fn2
()
11
{
12
b
.
f0
=
0
;
13
for
(;;
b
.
f0
=
fn1
(
b
.
f0
))
14
(
c
&&
b
.
f1
) ||
d
;
15
}