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.
Simplified GIMPLE IL builder functions.
* gimple.c (create_gimple_tmp): New. (get_expr_type): New. (build_assign): New. (build_type_cast): New. * gimple.h (enum ssa_mode): Define. (gimple_seq_set_location): New. * asan.c (build_check_stmt): Change some gimple_build_* calls to use build_assign and build_type_cast. From-SVN: r198056
- Loading branch information
Showing
4 changed files
with
159 additions
and
51 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,14 @@ | ||
2013-04-18 Diego Novillo <[email protected]> | ||
|
||
* gimple.c (create_gimple_tmp): New. | ||
(get_expr_type): New. | ||
(build_assign): New. | ||
(build_type_cast): New. | ||
* gimple.h (enum ssa_mode): Define. | ||
(gimple_seq_set_location): New. | ||
* asan.c (build_check_stmt): Change some gimple_build_* calls | ||
to use build_assign and build_type_cast. | ||
|
||
2013-04-18 Richard Biener <[email protected]> | ||
|
||
* tree-vect-data-refs.c (vect_analyze_group_access): Properly | ||
|
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