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
arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
ssa-sink-6.c
blob
31f5af330f9561b4c1d9e8d8cfc83cf5bd76b389
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-sink" } */
3
4
int
foo
(
int
*
a
,
int
r
)
5
{
6
int
ret
=
0
;
7
*
a
=
1
;
8
if
(
r
==
3
)
9
*
a
=
5
;
10
else
11
ret
=
r
+
20
;
12
return
ret
;
13
}
14
15
/* *a = 1 should be sunk to the else block. */
16
17
/* { dg-final { scan-tree-dump-times "Sinking" 1 "sink1" } } */