diff options
author | Dorit Nuzman <dorit@il.ibm.com> | 2005-09-19 14:54:28 +0000 |
---|---|---|
committer | Dorit Nuzman <dorit@gcc.gnu.org> | 2005-09-19 14:54:28 +0000 |
commit | 3c7d0735f564a48ea13b5246c5675cabaf53d0c6 (patch) | |
tree | 2900f810d56e7c95c656926bb2065f9957bcf714 /gcc/tree-ssa-operands.c | |
parent | 99c09897c242936f17490c0340ac272fc90b67f0 (diff) | |
download | gcc-3c7d0735f564a48ea13b5246c5675cabaf53d0c6.zip gcc-3c7d0735f564a48ea13b5246c5675cabaf53d0c6.tar.gz gcc-3c7d0735f564a48ea13b5246c5675cabaf53d0c6.tar.bz2 |
tree-ssa-operands.c (swap_tree_operands): Export.
* tree-ssa-operands.c (swap_tree_operands): Export.
* tree.h (swap_tree_operands): Declare.
* tree-vectorizer.c (vect_is_simple_reduction): Remove ATTRIBUTE_UNUSED.
Call swap_tree_operands.
From-SVN: r104421
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 0af1995..5b1e445 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -1165,7 +1165,7 @@ create_ssa_artficial_load_stmt (tree new_stmt, tree old_stmt) delink_imm_use (use_p); } -static void +void swap_tree_operands (tree stmt, tree *exp0, tree *exp1) { tree op0, op1; |