diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-10-05 13:09:48 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-10-05 13:09:48 +0000 |
commit | 0ee55ad88a745b42dc1466c5ae6360f83ba3c628 (patch) | |
tree | e7252e6b30d0314c0a91a10384c241b692dfaf01 /gcc/c-pretty-print.c | |
parent | 35222de242df6eb8698fda53c711915914639f68 (diff) | |
download | gcc-0ee55ad88a745b42dc1466c5ae6360f83ba3c628.zip gcc-0ee55ad88a745b42dc1466c5ae6360f83ba3c628.tar.gz gcc-0ee55ad88a745b42dc1466c5ae6360f83ba3c628.tar.bz2 |
c-pretty-print.c: Fix comment formatting.
* c-pretty-print.c: Fix comment formatting.
* cfglayout.c: Likewise.
* cfgloopanal.c: Likewise.
* cppcharset.c: Likewise.
* dbxout.c: Likewise.
* ggc-page.c: Likewise.
* ggc.h: Likewise.
* target.h: Likewise.
From-SVN: r72110
Diffstat (limited to 'gcc/c-pretty-print.c')
-rw-r--r-- | gcc/c-pretty-print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-pretty-print.c b/gcc/c-pretty-print.c index 1ddc1d0..9297712 100644 --- a/gcc/c-pretty-print.c +++ b/gcc/c-pretty-print.c @@ -81,7 +81,7 @@ static void pp_c_assignment_expression (c_pretty_printer *, tree); /* declarations. */ -/* Helper functions. */ +/* Helper functions. */ void pp_c_whitespace (c_pretty_printer *pp) @@ -223,7 +223,7 @@ pp_c_pointer (c_pretty_printer *pp, tree t) switch (TREE_CODE (t)) { case POINTER_TYPE: - /* It is easier to handle C++ reference types here. */ + /* It is easier to handle C++ reference types here. */ case REFERENCE_TYPE: if (TREE_CODE (TREE_TYPE (t)) == POINTER_TYPE) pp_c_pointer (pp, TREE_TYPE (t)); |