* tracepoint.c (merge_uploaded_trace_state_variables): Only print
messages if info_verbose.
This commit is contained in:
parent
3354061073
commit
417b511093
2 changed files with 13 additions and 4 deletions
|
@ -3139,13 +3139,17 @@ merge_uploaded_trace_state_variables (struct uploaded_tsv **uploaded_tsvs)
|
|||
{
|
||||
tsv = find_matching_tsv (utsv);
|
||||
if (tsv)
|
||||
printf_filtered (_("Assuming trace state variable $%s is same as target's variable %d.\n"),
|
||||
tsv->name, utsv->number);
|
||||
{
|
||||
if (info_verbose)
|
||||
printf_filtered (_("Assuming trace state variable $%s is same as target's variable %d.\n"),
|
||||
tsv->name, utsv->number);
|
||||
}
|
||||
else
|
||||
{
|
||||
tsv = create_tsv_from_upload (utsv);
|
||||
printf_filtered (_("Created trace state variable $%s for target's variable %d.\n"),
|
||||
tsv->name, utsv->number);
|
||||
if (info_verbose)
|
||||
printf_filtered (_("Created trace state variable $%s for target's variable %d.\n"),
|
||||
tsv->name, utsv->number);
|
||||
}
|
||||
/* Give precedence to numberings that come from the target. */
|
||||
if (tsv)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue