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-7.c
blob
bd748442edc8167af53df7b0b6a36de6eeed7f06
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-sink" } */
3
4
int
foo
(
int
*
a
,
int
r
,
short
*
b
)
5
{
6
int
ret
=
0
;
7
*
a
=
1
;
8
if
(
r
==
3
)
9
*
a
=
5
;
10
else
11
ret
=
r
+
20
;
12
*
b
=
9
;
13
return
ret
;
14
}
15
16
/* *a = 1 should be sunk to the else block. */
17
18
/* { dg-final { scan-tree-dump-times "Sinking" 1 "sink1" } } */