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
PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr43629.c
blob
10c0196c89bde7d46cf78ffd394ba56783856c26
1
int
flag
;
2
extern
void
abort
(
void
);
3
int
main
()
4
{
5
int
x
;
6
if
(
flag
)
7
x
= -
1
;
8
else
9
x
&=
0xff
;
10
if
(
x
& ~
0xff
)
11
abort
();
12
return
0
;
13
}