diff options
author | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-14 14:09:38 +0000 |
---|---|---|
committer | jamborm <jamborm@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-14 14:09:38 +0000 |
commit | a60aac353faf8ca22af671215d756ce008ce181a (patch) | |
tree | 6dae070c669f4127992ae14aa04df8833a505da6 /gcc/ipa-prop.h | |
parent | 0584bcd4cab2d73c228b11169d9e6060516181f7 (diff) | |
download | gcc-a60aac353faf8ca22af671215d756ce008ce181a.tar.gz |
2010-09-14 Martin Jambor <mjambor@suse.cz>
* tree-sra.c (build_ref_for_offset): Loc made a parameter. Set the
location of generated statement. Changed all callers.
(build_ref_for_model): New parameter loc which used to set location of
all generated expressions. Changed all callers.
(generate_subtree_copies): Likewise.
(init_subtree_with_zero): Likewise.
(sra_modify_expr): Set locations of all generated statements and
expressions to the location the original statement.
(handle_unscalarized_data_in_subtree): Likewise.
(load_assign_lhs_subreplacements): Likewise.
(sra_modify_constructor_assign): Likewise.
(sra_modify_assign): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164280 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-prop.h')
-rw-r--r-- | gcc/ipa-prop.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ipa-prop.h b/gcc/ipa-prop.h index 210a8638a40..40f7ef950c4 100644 --- a/gcc/ipa-prop.h +++ b/gcc/ipa-prop.h @@ -512,7 +512,7 @@ void ipa_prop_read_jump_functions (void); void ipa_update_after_lto_read (void); /* From tree-sra.c: */ -tree build_ref_for_offset (tree, HOST_WIDE_INT, tree, gimple_stmt_iterator *, - bool); +tree build_ref_for_offset (location_t, tree, HOST_WIDE_INT, tree, + gimple_stmt_iterator *, bool); #endif /* IPA_PROP_H */ |