diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-05-01 01:43:24 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-05-01 01:43:24 +0000 |
commit | 4c0aad2c0846b123c21c6ba67b0778736a20fa27 (patch) | |
tree | 67bc9bb7114eb00252af1a0244b2ecd88dddadcd | |
parent | 6dd4c3fd8f38e69b0ca3cb3f692ea85c8535224a (diff) | |
download | gcc-4c0aad2c0846b123c21c6ba67b0778736a20fa27.zip gcc-4c0aad2c0846b123c21c6ba67b0778736a20fa27.tar.gz gcc-4c0aad2c0846b123c21c6ba67b0778736a20fa27.tar.bz2 |
* decl2.c (finish_file): Fix typo in comment.
From-SVN: r33559
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/decl2.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index fbfd16b..8dc78d7 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,7 @@ 2000-04-30 Mark Mitchell <mark@codesourcery.com> + * decl2.c (finish_file): Fix typo in comment. + * method.c (emit_thunk): Don't try to return a `void' value. * optimize.c (initialize_inlined_parameters): If the parameter is diff --git a/gcc/cp/decl2.c b/gcc/cp/decl2.c index 99473a8..99481cc 100644 --- a/gcc/cp/decl2.c +++ b/gcc/cp/decl2.c @@ -3523,7 +3523,7 @@ finish_file () in reverse order so that the most recently constructed variable is the first destroyed. If we're using __cxa_atexit, then we don't need to do this; functions - we're registered at initialization time to destroy the + were registered at initialization time to destroy the local statics. */ if (!flag_use_cxa_atexit) { |