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
pretty-print.h (pp_base): Remove.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr51879-3.c
blob
be4b37432288ab600522b140a6079ced2312850c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-pre" } */
3
4
int
bar
(
int
);
5
void
baz
(
int
);
6
7
void
8
foo
(
int
y
)
9
{
10
int
a
;
11
if
(
y
==
6
)
12
a
=
bar
(
7
) +
6
;
13
else
14
a
=
bar
(
7
) +
6
;
15
baz
(
a
);
16
}
17
18
/* { dg-final { scan-tree-dump-times "bar \\(" 1 "pre"} } */
19
/* { dg-final { cleanup-tree-dump "pre" } } */