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
libgfortran/ChangeLog:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr50763.c
blob
695b61c75f02345164c0b535daeb42a88592f499
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-tree-dominator-opts -fdump-tree-pre" } */
3
4
int
bar
(
int
i
);
5
6
void
7
foo
(
int
c
,
int
d
)
8
{
9
if
(
bar
(
c
))
10
bar
(
c
);
11
d
=
33
;
12
while
(
c
==
d
);
13
}
14
15
/* { dg-final { scan-tree-dump-times "== 33" 2 "pre"} } */
16
/* { dg-final { cleanup-tree-dump "pre" } } */