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
/
pr20130-1.c
blob
9763725602cfe2d66b2883f27d75f952a4b123da
1
/* { dg-do compile } */
2
/* { dg-options "-fdump-tree-gimple" } */
3
int
z
(
int
a
) {
4
return
a
* -
1
;
5
}
6
7
int
x
(
int
a
) {
8
return
-
1
*
a
;
9
}
10
11
int
y
(
int
a
) {
12
return
-(-
1
* -
a
);
13
}
14
/* { dg-final { scan-tree-dump-times "-a" 3 "gimple" } } */
15
/* { dg-final { cleanup-tree-dump "gimple" } } */