From 35cc02b5c80ac6738c1a3362a822e3d7e4d0c587 Mon Sep 17 00:00:00 2001 From: aldyh Date: Tue, 5 Dec 2006 17:26:05 +0000 Subject: Merge gimple-tuples-branch into mainline. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119546 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ipa-prop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/ipa-prop.c') diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c index 58fe8507a60..91eff199337 100644 --- a/gcc/ipa-prop.c +++ b/gcc/ipa-prop.c @@ -247,10 +247,10 @@ ipa_method_modify_stmt (struct cgraph_node *mt, tree stmt) switch (TREE_CODE (stmt)) { - case MODIFY_EXPR: - if (TREE_CODE (TREE_OPERAND (stmt, 0)) == PARM_DECL) + case GIMPLE_MODIFY_STMT: + if (TREE_CODE (GIMPLE_STMT_OPERAND (stmt, 0)) == PARM_DECL) { - i = ipa_method_tree_map (mt, TREE_OPERAND (stmt, 0)); + i = ipa_method_tree_map (mt, GIMPLE_STMT_OPERAND (stmt, 0)); if (i >= 0) ipa_method_modify_set (mt, i, true); } -- cgit v1.2.1