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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
reassoc-29.c
blob
ac01d75b37cd9cf97dc0b1b9fa55c3fbd9b4d7fa
1
/* PR tree-optimization/57322 */
2
/* { dg-do compile } */
3
/* { dg-options "-w -O1" } */
4
int
a
;
5
6
void
f
(
void
)
7
{
8
char
b
;
9
10
for
(;;
a
++)
11
{
12
char
*
p
= &
b
, *
q
;
13
*
q
=
b
<
0
& !!*
p
;
14
}
15
}