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
/
ssa-fre-16.c
blob
fbf2e8873ff341972d1a67bf5ad4c31c4e7e823e
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-fre1" } */
3
4
/* FRE should be able to combine i and j and perform simplification
5
on the condition. */
6
7
extern
void
link_error
(
void
);
8
int
i
;
9
int
foo
(
int
b
,
int
c
)
10
{
11
i
=
b
+
1
;
12
int
j
=
i
-
1
;
13
if
(
b
!=
j
)
14
link_error
();
15
}
16
17
/* { dg-final { scan-tree-dump-not "link_error" "fre1" } } */