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 middle-end/58463 (ICE with -fdump-tree-all-all in vector indexe…
…d access) PR middle-end/58463 * gcc.dg/pr58463.c: New test. From-SVN: r202976
- Loading branch information
Paulo Matos
authored and
Paulo Matos
committed
Sep 27, 2013
1 parent
0d0e2af
commit 3c468b4
Showing
2 changed files
with
20 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,8 @@ | ||
2013-09-27 Paulo Matos <[email protected]> | ||
|
||
PR middle-end/58463 | ||
* gcc.dg/pr58463.c: New test. | ||
|
||
2013-09-27 Paulo Matos <[email protected]> | ||
|
||
* cfgloop.h (number_of_loops): Fix typo in check for null. | ||
|
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,15 @@ | ||
/* { dg-do compile } */ | ||
/* { dg-options "-fdump-tree-ealias-details -O2" } */ | ||
|
||
typedef struct | ||
{ | ||
int data16; | ||
} | ||
list_data; | ||
void | ||
fn1 (list_data * p1) | ||
{ | ||
p1->data16 = p1->data16 & 1 & p1->data16 >> 1; | ||
} | ||
|
||
/* { dg-final { cleanup-tree-dump "ealias" } } */ |