aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2010-09-29 13:52:17 +0000
committerYao Qi <qiyao@gcc.gnu.org>2010-09-29 13:52:17 +0000
commit085c1b4766696a735918705c56819cf4e71f4b15 (patch)
tree8bea237ea41489f306d66161dfc429fb03fd3729
parentb8b4301eecf88d5f727f729a479b8020afe60fdc (diff)
downloadgcc-085c1b4766696a735918705c56819cf4e71f4b15.zip
gcc-085c1b4766696a735918705c56819cf4e71f4b15.tar.gz
gcc-085c1b4766696a735918705c56819cf4e71f4b15.tar.bz2
decl.c (get_atexit_node): Fix typo.
2010-09-29 Yao Qi <yao@codesourcery.com> * decl.c (get_atexit_node): Fix typo. From-SVN: r164718
-rw-r--r--gcc/cp/ChangeLog4
-rw-r--r--gcc/cp/decl.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 175bc98..607d71a 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,7 @@
+2010-09-29 Yao Qi <yao@codesourcery.com>
+
+ * decl.c (get_atexit_node): Fix typo.
+
2010-09-28 Jason Merrill <jason@redhat.com>
* tree.c (lvalue_kind): Rename from lvalue_p_1, make nonstatic.
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c
index 18367b5..f982377 100644
--- a/gcc/cp/decl.c
+++ b/gcc/cp/decl.c
@@ -6131,7 +6131,7 @@ get_atexit_node (void)
int __cxa_atexit (void (*)(void *), void *, void *)
- We build up the argument types and then then function type
+ We build up the argument types and then the function type
itself. */
tree argtype0, argtype1, argtype2;
@@ -6167,7 +6167,7 @@ get_atexit_node (void)
int atexit (void (*)());
- We build up the argument types and then then function type
+ We build up the argument types and then the function type
itself. */
fn_ptr_type = get_atexit_fn_ptr_type ();
/* Build the final atexit type. */