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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr80788.c
blob
b14d371009d9164f758e2677a12ac989bdd8883d
1
/* PR tree-optimization/80788 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fwrapv" } */
4
5
void
6
foo
(
signed char
x
)
7
{
8
signed char
a
= (
x
+
1
) ^
128
;
9
x
&= !!
a
;
10
if
(
x
!=
0
)
11
for
(;;)
12
;
13
}