diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-19 23:22:00 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-08-19 23:22:00 +0000 |
commit | 91c82c20c59b724ac410dd75d378e0798edb4e1b (patch) | |
tree | cfd217c7e698d0aaf23ec02241ccbff7719cb9c0 /gcc/c-pretty-print.c | |
parent | 16cdef4540f82fb1890edce9cc45abab9e6b9f5d (diff) | |
download | gcc-91c82c20c59b724ac410dd75d378e0798edb4e1b.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70583 138bc75d-0d04-0410-961f-82ee72b054a4
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 ee4d2a419e7..455137e6a58 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. */ |