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
/
pr63380-1.c
blob
29deface81d74dee8ee025f87493f520f8b2df89
1
/* { dg-do run } */
2
3
int
a
=
0
,
b
=
1
,
c
=
0
,
d
=
1
,
e
,
f
,
g
,
h
;
4
int
5
main
()
6
{
7
e
=
1
>>
d
;
8
f
= ((
31
/ (
1
>
e
)) ||
c
) /
2
;
9
g
=
b
||
a
;
10
h
=
31
/
g
;
11
if
(!
h
)
12
__builtin_abort
();
13
return
0
;
14
}
15