diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2001-02-14 10:57:59 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2001-02-14 10:57:59 +0000 |
commit | bfc8e1e2c423851901d3bfb94bcf7ee220adfb23 (patch) | |
tree | 5a445ae95e6c1973829a9b8b97248b83cc68eddc /gcc/cp/method.c | |
parent | c6e95f348808ad52294940b77ec4e747efde49b2 (diff) | |
download | gcc-bfc8e1e2c423851901d3bfb94bcf7ee220adfb23.tar.gz |
cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c section.
cp:
* cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
section.
* init.c (emit_base_init): Remove incorrect comment about
virtual bases.
* method.c (make_thunk): Fix comment alignment.
From-SVN: r39679
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r-- | gcc/cp/method.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c index a2b0a5aaea4..ccaec60424f 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -356,7 +356,7 @@ make_thunk (function, delta, vcall_index, generate_with_vtable_p) THUNK_VCALL_OFFSET (thunk) = vcall_offset; THUNK_GENERATE_WITH_VTABLE_P (thunk) = generate_with_vtable_p; /* The thunk itself is not a constructor or destructor, even if - the thing it is thunking to is. */ + the thing it is thunking to is. */ DECL_INTERFACE_KNOWN (thunk) = 1; DECL_NOT_REALLY_EXTERN (thunk) = 1; DECL_SAVED_FUNCTION_DATA (thunk) = NULL; |