diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-08-19 23:22:00 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-08-19 23:22:00 +0000 |
commit | a98ebe2e378bdd3e2139c43c66c4c3bde03abfd3 (patch) | |
tree | cfd217c7e698d0aaf23ec02241ccbff7719cb9c0 /gcc/c-pretty-print.c | |
parent | f5e7af77738d6170febe908cae864652965d3639 (diff) | |
download | gcc-a98ebe2e378bdd3e2139c43c66c4c3bde03abfd3.zip gcc-a98ebe2e378bdd3e2139c43c66c4c3bde03abfd3.tar.gz gcc-a98ebe2e378bdd3e2139c43c66c4c3bde03abfd3.tar.bz2 |
builtins.c: Fix comment typos.
* builtins.c: Fix comment typos.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-pretty-print.c: Likewise.
* cfgbuild.c: Likewise.
* cfglayout.c: Likewise.
* cfgloopanal.c: Likewise.
* cgraphunit.c: Likewise.
* cppfiles.c: Likewise.
* dwarfout.c: Likewise.
* expr.c: Likewise.
* fold-const.c: Likewise.
* gcse.c: Likewise.
* ggc-page.c: Likewise.
* haifa-sched.c: Likewise.
* pretty-print.c: Likewise.
* tree.c: Likewise.
* tree.h: Likewise.
* value-prof.c: Likewise.
From-SVN: r70583
Diffstat (limited to 'gcc/c-pretty-print.c')
-rw-r--r-- | gcc/c-pretty-print.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-pretty-print.c b/gcc/c-pretty-print.c index ee4d2a4..455137e 100644 --- a/gcc/c-pretty-print.c +++ b/gcc/c-pretty-print.c @@ -30,9 +30,9 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* The pretty-printer code is primarily designed to closely follow (GNU) C and C++ grammars. That is to be contrasted with spaghetti codes we used to have in the past. Following a structured - approach (preferaably the official grammars) is believed to make it - much easier o add extensions and nifty pretty-printing effects that - takes expresssion or declaration contexts into account. */ + approach (preferably the official grammars) is believed to make it + much easier to add extensions and nifty pretty-printing effects that + takes expression or declaration contexts into account. */ #define pp_c_whitespace(PP) \ @@ -299,7 +299,7 @@ pp_c_simple_type_specifier (c_pretty_printer ppi, tree t) Implementation note: Because of the non-linearities in array or - function declarations, this routinie prints not just the + function declarations, this routine prints not just the specifier-qualifier-list of such entities or types of such entities, but also the 'pointer' production part of their declarators. The remaining part is done by pp_declarator or pp_c_abstract_declarator. */ |