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.
tree-ssa-loop-ivopts.c (set_autoinc_for_original_candidates): Find au…
…to-increment use both before and after candidate. * tree-ssa-loop-ivopts.c (set_autoinc_for_original_candidates): Find auto-increment use both before and after candidate. * gcc.target/arm/ivopts-orig_biv-inc.c: New testcase. From-SVN: r202164
- Loading branch information
Bin Cheng
authored and
Bin Cheng
committed
Sep 2, 2013
1 parent
fde6f97
commit 85ff4ec
Showing
4 changed files
with
50 additions
and
8 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-02 Bin Cheng <[email protected]> | ||
|
||
* tree-ssa-loop-ivopts.c (set_autoinc_for_original_candidates): | ||
Find auto-increment use both before and after candidate. | ||
|
||
2013-09-02 Marek Polacek <[email protected]> | ||
|
||
* Makefile.in (ubsan.o): Add $(TM_P_H) dependency. | ||
|
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,7 @@ | ||
2013-09-02 Bin Cheng <[email protected]> | ||
|
||
* gcc.target/arm/ivopts-orig_biv-inc.c: New testcase. | ||
|
||
2013-09-02 Paolo Carlini <[email protected]> | ||
|
||
PR c++/21682, implement DR 565 | ||
|
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 "-O2 -fdump-tree-ivopts-details" } */ | ||
/* { dg-skip-if "" { arm_thumb1 } } */ | ||
|
||
extern char *__ctype_ptr__; | ||
|
||
unsigned char * foo(unsigned char *ReadPtr) | ||
{ | ||
|
||
unsigned char c; | ||
|
||
while (!(((__ctype_ptr__+sizeof(""[*ReadPtr]))[(int)(*ReadPtr)])&04) == (!(0))) | ||
ReadPtr++; | ||
|
||
return ReadPtr; | ||
} | ||
|
||
/* { dg-final { scan-tree-dump-times "original biv" 2 "ivopts"} } */ | ||
/* { dg-final { cleanup-tree-dump "ivopts" } } */ |
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