forked from iains/gcc-14-branch
-
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.
re PR tree-optimization/87873 (ICE: verify_gimple failed (error: inco…
…mpatible types in PHI argument 0)) 2018-11-05 Richard Biener <[email protected]> PR tree-optimization/87873 * tree-ssa-loop-manip.h (split_loop_exit_edge): Add copy_constants_p argument. * tree-ssa-loop-manip.c (split_loop_exit_edge): Likewise. * tree-vect-loop.c (vect_transform_loop): When splitting the loop exit also create forwarder PHIs for constants. * tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges): Handle constant to_arg, add extra checking we match up the correct PHIs. * gcc.dg/pr87873.c: New testcase. From-SVN: r265812
- Loading branch information
Richard Biener
committed
Nov 5, 2018
1 parent
546f678
commit 733441e
Showing
7 changed files
with
53 additions
and
9 deletions.
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,15 @@ | ||
2018-11-05 Richard Biener <[email protected]> | ||
|
||
PR tree-optimization/87873 | ||
* tree-ssa-loop-manip.h (split_loop_exit_edge): Add copy_constants_p | ||
argument. | ||
* tree-ssa-loop-manip.c (split_loop_exit_edge): Likewise. | ||
* tree-vect-loop.c (vect_transform_loop): When splitting the | ||
loop exit also create forwarder PHIs for constants. | ||
* tree-vect-loop-manip.c (slpeel_duplicate_current_defs_from_edges): | ||
Handle constant to_arg, add extra checking we match up the correct | ||
PHIs. | ||
|
||
2018-11-05 Robin Dapp <[email protected]> | ||
|
||
* config/s390/s390.md: QImode and HImode for load on condition. | ||
|
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,4 +1,9 @@ | ||
2018-10-26 Robin Dapp <[email protected]> | ||
2018-11-05 Richard Biener <[email protected]> | ||
|
||
PR tree-optimization/87873 | ||
* gcc.dg/pr87873.c: New testcase. | ||
|
||
2018-11-05 Robin Dapp <[email protected]> | ||
|
||
* gcc.target/s390/ifcvt-one-insn-bool.c: New test. | ||
* gcc.target/s390/ifcvt-one-insn-char.c: New test. | ||
|
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,19 @@ | ||
/* { dg-do compile } */ | ||
/* { dg-options "-O -ftree-loop-vectorize" } */ | ||
|
||
long k3; | ||
int gs; | ||
|
||
void | ||
s2 (int aj) | ||
{ | ||
while (aj < 1) | ||
{ | ||
gs ^= 1; | ||
k3 = (long) gs * 2; | ||
if (k3 != 0) | ||
k3 = 0; | ||
|
||
++aj; | ||
} | ||
} |
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
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
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
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