mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-04 12:31:38 +08:00
* tracepoint.c (merge_uploaded_trace_state_variables): Only print
messages if info_verbose.
This commit is contained in:
@ -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>
|
2010-10-08 Ken Werner <ken.werner@de.ibm.com>
|
||||||
|
|
||||||
* valops.c (value_cast): Handle vector types.
|
* 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);
|
tsv = find_matching_tsv (utsv);
|
||||||
if (tsv)
|
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
|
else
|
||||||
{
|
{
|
||||||
tsv = create_tsv_from_upload (utsv);
|
tsv = create_tsv_from_upload (utsv);
|
||||||
printf_filtered (_("Created trace state variable $%s for target's variable %d.\n"),
|
if (info_verbose)
|
||||||
tsv->name, utsv->number);
|
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. */
|
/* Give precedence to numberings that come from the target. */
|
||||||
if (tsv)
|
if (tsv)
|
||||||
|
Reference in New Issue
Block a user