Commit c050ec51 by Jason Merrill

tweak comments

From-SVN: r41222
parent 4f75c180
...@@ -4034,6 +4034,11 @@ convert_default_arg (type, arg, fn, parmnum) ...@@ -4034,6 +4034,11 @@ convert_default_arg (type, arg, fn, parmnum)
return arg; return arg;
} }
/* Subroutine of the various build_*_call functions. Overload resolution
has chosen a winning candidate CAND; build up a CALL_EXPR accordingly.
ARGS is a TREE_LIST of the unconverted arguments to the call. FLAGS is a
bitmask of various LOOKUP_* flags which apply to the call itself. */
static tree static tree
build_over_call (cand, args, flags) build_over_call (cand, args, flags)
struct z_candidate *cand; struct z_candidate *cand;
......
...@@ -2118,12 +2118,9 @@ build_anon_union_vars (anon_decl, elems, static_p, external_p) ...@@ -2118,12 +2118,9 @@ build_anon_union_vars (anon_decl, elems, static_p, external_p)
return main_decl; return main_decl;
} }
/* Finish off the processing of a UNION_TYPE structure. /* Finish off the processing of a UNION_TYPE structure. If the union is an
If there are static members, then all members are anonymous union, then all members must be laid out together. PUBLIC_P
static, and must be laid out together. If the is nonzero if this union is not declared static. */
union is an anonymous union, we arrange for that
as well. PUBLIC_P is nonzero if this union is
not declared static. */
void void
finish_anon_union (anon_union_decl) finish_anon_union (anon_union_decl)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment