diff options
author | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-21 19:29:07 +0000 |
---|---|---|
committer | rwild <rwild@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-07-21 19:29:07 +0000 |
commit | 08cc44e74d28ab49958b246b6d1f3ee827c21d24 (patch) | |
tree | 6665537e7f885d1d1832af7b0b228f216c10e7d3 /gcc/cp/cxx-pretty-print.c | |
parent | 8580db918aa6fe046b56ec8e1294352964063a7a (diff) | |
download | gcc-08cc44e74d28ab49958b246b6d1f3ee827c21d24.tar.gz |
gcc/objc/
* objc-act.c: Fix comment typos.
gcc/cp/
* call.c: Fix comment typos.
* class.c: Likewise.
* cp-tree.h: Likewise.
* cxx-pretty-print.c: Likewise.
* decl.c: Likewise.
* init.c: Likewise.
* name-lookup.c: Likewise.
* operators.def: Likewise.
* parser.c: Likewise.
* pt.c: Likewise.
* tree.c: Likewise.
* typeck.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138042 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/cxx-pretty-print.c')
-rw-r--r-- | gcc/cp/cxx-pretty-print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/cxx-pretty-print.c b/gcc/cp/cxx-pretty-print.c index 62ff1fc3fc3..cf9ed482e84 100644 --- a/gcc/cp/cxx-pretty-print.c +++ b/gcc/cp/cxx-pretty-print.c @@ -452,7 +452,7 @@ pp_cxx_primary_expression (cxx_pretty_printer *pp, tree t) reinterpret_cast < type-id > ( expression ) const_cast < type-id > ( expression ) typeid ( expression ) - typeif ( type-id ) */ + typeid ( type-id ) */ static void pp_cxx_postfix_expression (cxx_pretty_printer *pp, tree t) @@ -810,7 +810,7 @@ pp_cxx_pm_expression (cxx_pretty_printer *pp, tree t) { switch (TREE_CODE (t)) { - /* Handle unfortunate OFFESET_REF overloading here. */ + /* Handle unfortunate OFFSET_REF overloading here. */ case OFFSET_REF: if (TYPE_P (TREE_OPERAND (t, 0))) { @@ -2016,7 +2016,7 @@ pp_cxx_template_parameter (cxx_pretty_printer *pp, tree t) pp_cxx_identifier (pp, "..."); if (DECL_NAME (parameter)) pp_cxx_tree_identifier (pp, DECL_NAME (parameter)); - /* FIXME: Chech if we should print also default argument. */ + /* FIXME: Check if we should print also default argument. */ break; case PARM_DECL: |