diff options
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 77fff6c..755b117 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -5067,7 +5067,7 @@ check_array_ref (tree ref, const location_t *location, bool ignore_off_by_one) address of an ARRAY_REF, and call check_array_ref on it. */ static void -search_for_addr_array(tree t, const location_t *location) +search_for_addr_array (tree t, const location_t *location) { while (TREE_CODE (t) == SSA_NAME) { @@ -5076,8 +5076,8 @@ search_for_addr_array(tree t, const location_t *location) if (gimple_code (g) != GIMPLE_ASSIGN) return; - if (get_gimple_rhs_class (gimple_assign_rhs_code (g)) != - GIMPLE_SINGLE_RHS) + if (get_gimple_rhs_class (gimple_assign_rhs_code (g)) + != GIMPLE_SINGLE_RHS) return; t = gimple_assign_rhs1 (g); @@ -5094,7 +5094,7 @@ search_for_addr_array(tree t, const location_t *location) if (TREE_CODE (t) == ARRAY_REF) check_array_ref (t, location, true /*ignore_off_by_one*/); - t = TREE_OPERAND(t,0); + t = TREE_OPERAND (t, 0); } while (handled_component_p (t)); } |