From 59b2314d5c91d83a75afdb223aa81990d9c7c57b Mon Sep 17 00:00:00 2001 From: kazu Date: Sun, 17 Apr 2005 06:42:03 +0000 Subject: * tree-flow-inline.h (get_stmt_operands): Remove. * lambda-code.c, tree-ssa-loop-unswitch.c, tree-ssa-operands.c, tree-ssa-pre.c, tree-ssa-propagate.c, tree-ssa-sink.c, tree-ssa.c, tree-tailcall.c, tree-vect-transform.c, tree-vectorizer.c, tree-vrp.c): Remove calls to get_stmt_operands. * doc/tree-ssa.texi: Don't mention get_stmt_operands. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98262 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-ssa-loop-im.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'gcc/tree-ssa-loop-im.c') diff --git a/gcc/tree-ssa-loop-im.c b/gcc/tree-ssa-loop-im.c index 4e123f2c8a5..b51b5e11806 100644 --- a/gcc/tree-ssa-loop-im.c +++ b/gcc/tree-ssa-loop-im.c @@ -220,8 +220,6 @@ movement_possibility (tree stmt) { /* If we perform unswitching, force the operands of the invariant condition to be moved out of the loop. */ - get_stmt_operands (stmt); - return MOVE_POSSIBLE; } @@ -231,8 +229,6 @@ movement_possibility (tree stmt) if (stmt_ends_bb_p (stmt)) return MOVE_IMPOSSIBLE; - get_stmt_operands (stmt); - if (stmt_ann (stmt)->has_volatile_ops) return MOVE_IMPOSSIBLE; @@ -622,7 +618,6 @@ determine_invariantness_stmt (struct dom_walk_data *dw_data ATTRIBUTE_UNUSED, The multiply stmt is not invariant, so update iterator and avoid rescanning. */ bsi_replace (&bsi, stmt1, true); - get_stmt_operands (stmt1); /* Should not be necessary. */ bsi_insert_after (&bsi, stmt2, BSI_NEW_STMT); SSA_NAME_DEF_STMT (lhs) = stmt2; -- cgit v1.2.3