mirrored from git://gcc.gnu.org/git/gcc.git
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re PR rtl-optimization/32773 (SH: ICE in create_pre_exit, at mode-swi…
…tching.c:223) PR rtl-optimization/32773 * cfglayout.c (force_one_exit_fallthru): New function. (cfg_layout_finalize): Use it. * gcc.dg/pr32773.c: New test. From-SVN: r126700
- Loading branch information
Zdenek Dvorak
authored and
Zdenek Dvorak
committed
Jul 17, 2007
1 parent
02634bb
commit 9f2e9ac
Showing
4 changed files
with
73 additions
and
0 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,9 @@ | ||
2007-07-17 Zdenek Dvorak <[email protected]> | ||
|
||
PR rtl-optimization/32773 | ||
* cfglayout.c (force_one_exit_fallthru): New function. | ||
(cfg_layout_finalize): Use it. | ||
|
||
2007-07-16 Richard Guenther <[email protected]> | ||
Uros Bizjak <[email protected]> | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2007-07-17 Zdenek Dvorak <[email protected]> | ||
|
||
PR rtl-optimization/32773 | ||
* gcc.dg/pr32773.c: New test. | ||
|
||
2007-07-16 Andrew Pinski <[email protected]> | ||
|
||
* gcc.target/spu/intrinsics-1.c: Use dg-message to | ||
|
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,11 @@ | ||
/* { dg-do compile } */ | ||
/* { dg-options "-O -fprofile-use" } */ | ||
/* { dg-options "-O -m4 -fprofile-use" { target sh-*-* } } */ | ||
|
||
void foo (int *p) | ||
{ | ||
if (p) | ||
*p = 0; | ||
} /* { dg-message "note: \[^\n\]*execution counts estimated" } */ | ||
|
||
/* { dg-final { cleanup-coverage-files } } */ |