diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 405aefa..066f16c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-04-19 Eric Botcazou <ebotcazou@adacore.com> + + * tree.c (protected_set_expr_location): Fix formatting. + 2009-04-18 Joseph Myers <joseph@codesourcery.com> PR c/27676 @@ -3584,7 +3584,8 @@ set_expr_locus (tree node, source_location *loc) LOC is the location to use in tree T. */ -void protected_set_expr_location (tree t, location_t loc) +void +protected_set_expr_location (tree t, location_t loc) { if (t && CAN_HAVE_LOCATION_P (t)) SET_EXPR_LOCATION (t, loc); |