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
/
pr59388.c
blob
de3648a003eda0240d98964794e3a6924a4088ae
1
/* PR tree-optimization/59388 */
2
3
int
a
;
4
struct
S
{
unsigned int
f
:
1
; }
b
;
5
6
int
7
main
()
8
{
9
a
= (
0
<
b
.
f
) |
b
.
f
;
10
return
a
;
11
}