libctf: remove reference to "unconflicted link mode".

There is no such thing, and the comment makes no sense, and doesn't
match what the code is doing.  We always want to put variables in the
same dicts as the types they relate to if at all possible.

libctf/ChangeLog
2021-03-02  Nick Alcock  <nick.alcock@oracle.com>

	* ctf-link.c (ctf_link_one_variable): Remove reference to
	"unconflicted link mode".
This commit is contained in:
Nick Alcock 2021-03-02 15:10:05 +00:00
parent 8915c559d4
commit 478c04a55e
2 changed files with 8 additions and 3 deletions

View file

@ -499,9 +499,9 @@ ctf_link_one_variable (const char *name, ctf_id_t type, void *arg_)
return 0;
}
/* In unconflicted link mode, if this type is mapped to a type in the parent
dict, we want to try to add to that first: if it reports a duplicate,
or if the type is in a child already, add straight to the child. */
/* If this type is mapped to a type in the parent dict, we want to try to add
to that first: if it reports a duplicate, or if the type is in a child
already, add straight to the child. */
insert_fp = arg->out_fp;