diff options
author | Richard Guenther <rguenther@suse.de> | 2010-07-05 14:51:16 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2010-07-05 14:51:16 +0000 |
commit | a41e5e86c0bbcb0dca6311a5e6dab8d7e005a076 (patch) | |
tree | 26e22ad4b9ee130b7097d46360e487d9f427ecf0 /gcc/tree-flow.h | |
parent | 5c144a5fadc5f5d8df422e6f85e8464c1b918780 (diff) | |
download | gcc-a41e5e86c0bbcb0dca6311a5e6dab8d7e005a076.zip gcc-a41e5e86c0bbcb0dca6311a5e6dab8d7e005a076.tar.gz gcc-a41e5e86c0bbcb0dca6311a5e6dab8d7e005a076.tar.bz2 |
tree.c (reference_alias_ptr_type): New function.
2010-07-05 Richard Guenther <rguenther@suse.de>
* tree.c (reference_alias_ptr_type): New function.
* tree.h (reference_alias_ptr_type): Declare.
* tree-ssa-loop-ivopts.c (copy_ref_info): Restructure to
allow non-TARGET_MEM_REF new refs.
(rewrite_use_address): Pass old alias pointer type to
create_mem_ref.
* tree-ssa-address.c (create_mem_ref_raw): Get alias pointer type.
Build a MEM_REF instead of a TARGET_MEM_REF if possible.
(create_mem_ref): Get alias pointer type. Adjust calls to
create_mem_ref_raw.
(maybe_fold_tmr): Likewise.
* tree-flow.h (create_mem_ref): Adjust prototype.
From-SVN: r161840
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index fb1373a..fd9a542 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -833,7 +833,7 @@ struct mem_address }; struct affine_tree_combination; -tree create_mem_ref (gimple_stmt_iterator *, tree, +tree create_mem_ref (gimple_stmt_iterator *, tree, tree, struct affine_tree_combination *, tree, bool); rtx addr_for_mem_ref (struct mem_address *, addr_space_t, bool); void get_address_description (tree, struct mem_address *); |