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
* tree-ssa-loop-manip.c (split_loop_exit_edge): Return the new block.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
fold-abs-3.c
blob
d151a8d7aec0cd60424b5d53f8fdddd3e1656233
1
/* { dg-do compile } */
2
/* { dg-options "-fdump-tree-gimple -fwrapv" } */
3
#define ABS(x) (x > 0 ? x : -x)
4
int
f
(
int
a
) {
5
return
ABS
(
ABS
(
a
));
6
}
7
8
/* { dg-final { scan-tree-dump-times "ABS" 1 "gimple" } } */
9
/* { dg-final { cleanup-tree-dump "gimple" } } */