forked from gcc-mirror/gcc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR tree-optimization/78384 * tree-ssa-loop-split.c (patch_loop_exit): Use correct edge. testsuite/ PR tree-optimization/78384 * gcc.dg/pr78384.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@244811 138bc75d-0d04-0410-961f-82ee72b054a4
- Loading branch information
matz
committed
Jan 23, 2017
1 parent
4109e2c
commit 7c9b5ff
Showing
4 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2017-01-23 Michael Matz <[email protected]> | ||
|
||
PR tree-optimization/78384 | ||
* tree-ssa-loop-split.c (patch_loop_exit): Use correct edge. | ||
|
||
2017-01-23 Richard Biener <[email protected]> | ||
|
||
PR tree-optimization/79186 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2017-01-23 Michael Matz <[email protected]> | ||
|
||
PR tree-optimization/78384 | ||
* gcc.dg/pr78384.c: New test. | ||
|
||
2017-01-23 Richard Biener <[email protected]> | ||
|
||
PR tree-optimization/79186 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* PR tree-optimization/78384 | ||
{ dg-do compile } | ||
{ dg-options "-O3 -w -fsplit-loops" } */ | ||
void | ||
a2 (int wv, int yg, int r9) | ||
{ | ||
while (wv < 1) | ||
{ | ||
int vn = r9 % 0; | ||
|
||
while (yg < 1) | ||
{ | ||
int lz; | ||
|
||
for (r9 = 0; r9 < 17; ++r9) | ||
{ | ||
} | ||
|
||
it: | ||
lz = (yg++ >= 0) ? 2 : 0; | ||
wv = vn < lz; | ||
} | ||
} | ||
goto it; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters