diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-14 15:27:37 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-14 15:27:37 +0000 |
commit | ae5a4794476d324a0190599d68449fb489c9f14e (patch) | |
tree | 045c5d0ec64afc180b33c76ab77d652bb726157b /gcc/tree-ssa-live.h | |
parent | ee4a2486ce802d17b6723b7d02767fe4489d492a (diff) | |
download | gcc-ae5a4794476d324a0190599d68449fb489c9f14e.tar.gz |
2004-05-14 Andrew Pinski <pinskia@physics.uc.edu>
PR optimization/14466
* tree-complex.c (make_temp): Remove.
(gimplify_val): Replace make_temp with make_rename_temp
and add NULL as the second argument.
(expand_complex_div_wide): Likewise.
* tree-dfa.c (make_rename_temp): New function.
* tree-flow.h (make_rename_temp): Declare.
* tree-sra.c (make_temp): Remove.
(lookup_scalar): Replace make_temp with make_rename_temp.
(create_scalar_copies): Likewise.
* tree-ssa-phiopt.c (conditional_replacement): When we
get non gimple create a temporary variable to hold the
casted expression.
2004-05-14 Andrew Pinski <pinskia@physics.uc.edu>
PR optimization/14466
* gcc.dg/tree-ssa/20040514-1.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81847 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-live.h')
-rw-r--r-- | gcc/tree-ssa-live.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-ssa-live.h b/gcc/tree-ssa-live.h index 2d97a93cfe8..30c33cfb84b 100644 --- a/gcc/tree-ssa-live.h +++ b/gcc/tree-ssa-live.h @@ -72,6 +72,7 @@ extern void change_partition_var (var_map, tree, int); extern void compact_var_map (var_map, int); extern void remove_ssa_form (FILE *, var_map, int); extern void register_ssa_partitions_for_vars (bitmap vars, var_map map); +extern tree make_ssa_temp (tree); static inline int num_var_partitions (var_map); static inline tree var_to_partition_to_var (var_map, tree); |