mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
* tracepoint.c (tvariables_info_1): Actually compute
the number of rows in the result.
This commit is contained in:
parent
4ebf39dbf4
commit
4baf5cf487
@ -1,3 +1,8 @@
|
||||
2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
|
||||
|
||||
* tracepoint.c (tvariables_info_1): Actually compute
|
||||
the number of rows in the result.
|
||||
|
||||
2010-03-24 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* remote.c (crc32): Constify `buf' parameter.
|
||||
|
@ -422,7 +422,7 @@ tvariables_info_1 (void)
|
||||
}
|
||||
|
||||
/* Try to acquire values from the target. */
|
||||
for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix)
|
||||
for (ix = 0; VEC_iterate (tsv_s, tvariables, ix, tsv); ++ix, ++count)
|
||||
tsv->value_known = target_get_trace_state_variable_value (tsv->number,
|
||||
&(tsv->value));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user