diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-07-06 23:23:46 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-07-06 23:23:46 +0000 |
commit | 9bcb9aae27c7ffe6a74521f951918739d87518ba (patch) | |
tree | b9ad3c88816bfbd4d57c6c8b46f31b765727c245 /gcc/cp/method.c | |
parent | 2a43945fa59a5d450f24b2c47c35c8fef8f959a8 (diff) | |
download | gcc-9bcb9aae27c7ffe6a74521f951918739d87518ba.zip gcc-9bcb9aae27c7ffe6a74521f951918739d87518ba.tar.gz gcc-9bcb9aae27c7ffe6a74521f951918739d87518ba.tar.bz2 |
call.c: Fix comment formatting.
* call.c: Fix comment formatting.
* class.c: Likewise.
* cp-tree.h: Likewise.
* decl.c: Likewise.
* decl2.c: Likewise.
* error.c: Likewise.
* method.c: Likewise.
* name-lookup.c: Likewise.
* parser.c: Likewise.
* pt.c: Likewise.
* rtti.c: Likewise.
* search.c: Likewise.
* typeck.c: Likewise.
From-SVN: r69022
Diffstat (limited to 'gcc/cp/method.c')
-rw-r--r-- | gcc/cp/method.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cp/method.c b/gcc/cp/method.c index e179d15..a0d8b63 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -218,7 +218,7 @@ make_thunk (tree function, bool this_adjusting, tree thunk; my_friendly_assert (TREE_CODE (function) == FUNCTION_DECL, 20021025); - /* We can have this thunks to covariant thunks, but not vice versa. */ + /* We can have this thunks to covariant thunks, but not vice versa. */ my_friendly_assert (!DECL_THIS_THUNK_P (function), 20021127); /* Scale the VIRTUAL_OFFSET to be in terms of bytes. */ @@ -233,7 +233,7 @@ make_thunk (tree function, bool this_adjusting, /* See if we already have the thunk in question. For this_adjusting thunks VIRTUAL_OFFSET will be an INTEGER_CST, for covariant thunks it - will be a BINFO. */ + will be a BINFO. */ for (thunk = DECL_THUNKS (function); thunk; thunk = TREE_CHAIN (thunk)) if (DECL_THIS_THUNK_P (thunk) == this_adjusting && THUNK_FIXED_OFFSET (thunk) == d @@ -313,7 +313,7 @@ finish_thunk (tree thunk) /* Adjust PTR by the constant FIXED_OFFSET, and by the vtable offset indicated by VIRTUAL_OFFSET, if that is non-null. THIS_ADJUSTING is nonzero for a this adjusting thunk and - zero for a result adjusting thunk. */ + zero for a result adjusting thunk. */ static tree thunk_adjust (tree ptr, bool this_adjusting, @@ -417,7 +417,7 @@ use_thunk (tree thunk_fndecl, bool emit_p) HOST_WIDE_INT fixed_offset, virtual_value; bool this_adjusting = DECL_THIS_THUNK_P (thunk_fndecl); - /* We should have called finish_thunk to give it a name. */ + /* We should have called finish_thunk to give it a name. */ my_friendly_assert (DECL_NAME (thunk_fndecl), 20021127); if (TREE_ASM_WRITTEN (thunk_fndecl)) |