diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-07 20:16:00 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-07 20:16:00 +0000 |
commit | 4f7f73c8d326fe567a23b0d73b92629b2c6b0190 (patch) | |
tree | c942eab68cbe4fd2928d53b1721538ff35b54f5d /gcc/tree-flow.h | |
parent | 9e3bd669b8773461ef05b43e356f2e2214919709 (diff) | |
download | gcc-4f7f73c8d326fe567a23b0d73b92629b2c6b0190.tar.gz |
* tree-flow-inline.h (may_propagate_copy): Move...
* tree-ssa-copy.c (may_propagate_copy): ... here. Fail if we
attempt to copy between types requiring conversion.
* tree-flow.h (may_propagate_copy): Update decl.
* tree-ssa-dom.c (cprop_operand): Tidy redundant tests.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84225 138bc75d-0d04-0410-961f-82ee72b054a4
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 aae57bc3cd0..dc4ddb2d7a4 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -591,10 +591,10 @@ extern void debug_dominator_optimization_stats (void); extern void propagate_value (use_operand_p, tree); extern void propagate_tree_value (tree *, tree); extern void replace_exp (use_operand_p, tree); +extern bool may_propagate_copy (tree, tree); /* In tree-flow-inline.h */ static inline int phi_arg_from_edge (tree, edge); -static inline bool may_propagate_copy (tree, tree); static inline bool is_call_clobbered (tree); static inline void mark_call_clobbered (tree); |