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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr20115-1.c
blob
1be99a5c9650d8f15b881d559a97a4bfb1c40f06
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-dom2" } */
3
4
extern
int
foo
(
void
)
__attribute__
((
pure
));
5
6
int
bar
()
7
{
8
int
a
=
foo
();
9
a
+=
foo
();
10
return
a
;
11
}
12
13
/* Check that we only have one call to foo. */
14
/* { dg-final { scan-tree-dump-times "foo" 1 "dom2" } } */