diff options
Diffstat (limited to 'gcc/tree-complex.c')
-rw-r--r-- | gcc/tree-complex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-complex.c b/gcc/tree-complex.c index c491ac8173c..49165713725 100644 --- a/gcc/tree-complex.c +++ b/gcc/tree-complex.c @@ -174,7 +174,7 @@ init_parameter_lattice_values (void) { tree parm, ssa_name; - for (parm = DECL_ARGUMENTS (cfun->decl); parm ; parm = TREE_CHAIN (parm)) + for (parm = DECL_ARGUMENTS (cfun->decl); parm ; parm = DECL_CHAIN (parm)) if (is_complex_reg (parm) && var_ann (parm) != NULL && (ssa_name = gimple_default_def (cfun, parm)) != NULL_TREE) @@ -596,10 +596,10 @@ extract_component (gimple_stmt_iterator *gsi, tree t, bool imagpart_p, case VAR_DECL: case RESULT_DECL: case PARM_DECL: - case INDIRECT_REF: case COMPONENT_REF: case ARRAY_REF: case VIEW_CONVERT_EXPR: + case MEM_REF: { tree inner_type = TREE_TYPE (TREE_TYPE (t)); @@ -680,7 +680,7 @@ update_parameter_components (void) edge entry_edge = single_succ_edge (ENTRY_BLOCK_PTR); tree parm; - for (parm = DECL_ARGUMENTS (cfun->decl); parm ; parm = TREE_CHAIN (parm)) + for (parm = DECL_ARGUMENTS (cfun->decl); parm ; parm = DECL_CHAIN (parm)) { tree type = TREE_TYPE (parm); tree ssa_name, r, i; |