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-sink-22.c
blob
e35626d4070f72dd915b7c160ce0c99737f52ac5
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-sink1-details" } */
3
4
extern
void
abort
(
void
);
5
6
int
foo
(
int
x
,
int
y
,
int
f
)
7
{
8
int
tem
=
x
/
y
;
9
if
(
f
)
10
abort
();
11
return
tem
;
12
}
13
14
/* { dg-final { scan-tree-dump-not "Sinking" "sink1" } } */