diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2009-04-19 08:39:05 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2009-04-19 08:39:05 +0000 |
commit | 9db4cdd3342a99eb31297f643ecd4432348aa49e (patch) | |
tree | da7634f34f5558cd51b6c2eba25a03c1c3443d0d /gcc | |
parent | 1af5a6b6da25700bfc878edd638d34552ac58155 (diff) | |
download | gcc-9db4cdd3342a99eb31297f643ecd4432348aa49e.zip gcc-9db4cdd3342a99eb31297f643ecd4432348aa49e.tar.gz gcc-9db4cdd3342a99eb31297f643ecd4432348aa49e.tar.bz2 |
* tree.c (protected_set_expr_location): Fix formatting.
From-SVN: r146340
Diffstat (limited to 'gcc')
-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); |