diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2008-07-21 19:29:07 +0000 |
---|---|---|
committer | Ralf Wildenhues <rwild@gcc.gnu.org> | 2008-07-21 19:29:07 +0000 |
commit | 39a13be5cbfe0e9623782de3733cd8265e6230d4 (patch) | |
tree | 6665537e7f885d1d1832af7b0b228f216c10e7d3 /gcc/objc | |
parent | 5194c5c12990408f73e6a1fc1d1132c887ab4c08 (diff) | |
download | gcc-39a13be5cbfe0e9623782de3733cd8265e6230d4.tar.gz |
objc-act.c: Fix comment typos.
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.
From-SVN: r138042
Diffstat (limited to 'gcc/objc')
-rw-r--r-- | gcc/objc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/objc/objc-act.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/objc/ChangeLog b/gcc/objc/ChangeLog index 50bedc14c71..12291d5604f 100644 --- a/gcc/objc/ChangeLog +++ b/gcc/objc/ChangeLog @@ -1,3 +1,7 @@ +2008-07-21 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> + + * objc-act.c: Fix comment typos. + 2008-07-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * objc-act.c (objc_start_class_interface, diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 5230f556e5f..44c8648a781 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -801,7 +801,7 @@ objc_build_struct (tree klass, tree fields, tree super_name) && TREE_CODE (TREE_CHAIN (field)) == FIELD_DECL) field = TREE_CHAIN (field); - /* For ObjC ABI purposes, the "packed" size of a base class is the + /* For ObjC ABI purposes, the "packed" size of a base class is the sum of the offset and the size (in bits) of the last field in the class. */ DECL_SIZE (base) @@ -1525,7 +1525,7 @@ synth_module_prologue (void) const struct gcc_debug_hooks *const save_hooks = debug_hooks; /* Suppress outputting debug symbols, because - dbxout_init hasn'r been called yet. */ + dbxout_init hasn't been called yet. */ write_symbols = NO_DEBUG; debug_hooks = &do_nothing_debug_hooks; |