mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 18:44:20 +08:00
* tracepoint.c (merge_uploaded_trace_state_variables): Only print
messages if info_verbose.
This commit is contained in:
parent
3354061073
commit
417b511093
@ -1,3 +1,8 @@
|
||||
2010-10-08 Daniel Jacobowitz <dan@codesourcery.com>
|
||||
|
||||
* tracepoint.c (merge_uploaded_trace_state_variables): Only print
|
||||
messages if info_verbose.
|
||||
|
||||
2010-10-08 Ken Werner <ken.werner@de.ibm.com>
|
||||
|
||||
* valops.c (value_cast): Handle vector types.
|
||||
|
@ -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…
Reference in New Issue
Block a user