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
/
forwprop-3.c
blob
bfdfba1800c92d106ce8b7afeacc9ff3a04b2bbd
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-forwprop1" } */
3
4
struct
bar
{
5
int
a
[
2
];
6
};
7
8
int
foo
(
struct
bar
*
x
)
9
{
10
int
*
p
= &
x
->
a
[
0
];
11
int
*
q
= &
x
->
a
[
1
];
12
if
(
p
<
q
)
13
return
1
;
14
return
0
;
15
}
16
17
/* { dg-final { scan-tree-dump "return 1;" "forwprop1" } } */