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
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr59221.c
blob
b3072271bfb91b088e9f992d2c98cf26d6d89394
1
/* { dg-xfail-if "ptxas crashes" { nvptx-*-* } { "*" } { "-O0" "-Os" } } */
2
3
4
int
a
=
1
,
b
,
d
;
5
short
e
;
6
7
int
8
main
()
9
{
10
for
(;
b
;
b
++)
11
;
12
short
f
=
a
;
13
int
g
=
15
;
14
e
=
f
?
f
:
1
<<
g
;
15
int
h
=
e
;
16
d
=
h
==
83647
?
0
:
h
;
17
if
(
d
!=
1
)
18
__builtin_abort
();
19
return
0
;
20
}