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
Document gcov-io (PR gcov-profile/84735).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fold-compare-2.c
blob
16f0fd9cdc3ce38fd436dd9ba766aa058122b282
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fdump-tree-fre1" } */
3
4
extern
void
abort
(
void
);
5
6
int
a
;
7
8
int
9
main
(
void
)
10
{
11
if
(
a
*
1000
<
0
)
12
abort
();
13
if
(
a
* -
43
>
0
)
14
abort
();
15
return
0
;
16
}
17
18
/* { dg-final { scan-tree-dump-times "Removing basic block" 2 "fre1" } } */
19