diff options
author | Doug Evans <dje@gnu.org> | 1993-09-12 14:58:02 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1993-09-12 14:58:02 +0000 |
commit | 59b22f6465f0e7bee50b3dc18e97c111a5aa521e (patch) | |
tree | f88131c356b2d638b73950512e2357da79d8b1f2 | |
parent | 3f15938e00770653b5eccd6834b19e1575498e2d (diff) | |
download | gcc-59b22f6465f0e7bee50b3dc18e97c111a5aa521e.zip gcc-59b22f6465f0e7bee50b3dc18e97c111a5aa521e.tar.gz gcc-59b22f6465f0e7bee50b3dc18e97c111a5aa521e.tar.bz2 |
(digest_init): Remove obsolete comments on args TAIL, OF_WHAT.
From-SVN: r5312
-rw-r--r-- | gcc/c-typeck.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 926d292..250d59e 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -4864,20 +4864,9 @@ pedwarn_init (format, local, ofwhat) /* Digest the parser output INIT as an initializer for type TYPE. Return a C expression of type TYPE to represent the initial value. - If TAIL is nonzero, it points to a variable holding a list of elements - of which INIT is the first. We update the list stored there by - removing from the head all the elements that we use. - Normally this is only one; we use more than one element only if - TYPE is an aggregate and INIT is not a constructor. - The arguments REQUIRE_CONSTANT and CONSTRUCTOR_CONSTANT request errors if non-constant initializers or elements are seen. CONSTRUCTOR_CONSTANT - applies only to elements of constructors. - - If OFWHAT is nonnull, it specifies what we are initializing, for error - messages. Examples: variable name, variable.member, array[44]. - If OFWHAT is null, the component name is stored on the spelling stack. - (That is true for all nested calls to digest_init.) */ + applies only to elements of constructors. */ static tree digest_init (type, init, require_constant, constructor_constant) |