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
testsuite: Revert to the original version of pr100056.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr92555.c
blob
b174e1c612e470b5193621b4250fa7fe8e6d2f4b
1
/* { dg-do compile } */
2
/* { dg-additional-options "-fwrapv" } */
3
4
signed char
rq
;
5
6
signed char
7
pu
(
int
tr
,
int
al
)
8
{
9
signed char
x8
;
10
11
while
(
tr
!=
0
)
12
{
13
for
(
x8
=
0
;
x8
>=
0
;
x8
+=
2
)
14
;
15
16
rq
^=
al
^
1
;
17
++
x8
;
18
++
tr
;
19
}
20
21
return
x8
;
22
}