mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
gdb/riscv: Fix whitespace error
Should be 'std::vector<type>' not 'std::vector <type>'. gdb/ChangeLog: * riscv-tdep.c (struct riscv_register_feature): Fix whitespace errors.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2020-06-25 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
|
* riscv-tdep.c (struct riscv_register_feature): Fix whitespace
|
||||||
|
errors.
|
||||||
|
|
||||||
2020-06-25 Andrew Burgess <andrew.burgess@embecosm.com>
|
2020-06-25 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* riscv-tdep.c (riscv_create_csr_aliases): Handle csr aliases from
|
* riscv-tdep.c (riscv_create_csr_aliases): Handle csr aliases from
|
||||||
|
@ -115,7 +115,7 @@ struct riscv_register_feature
|
|||||||
/* List of names for this register. The first name in this list is the
|
/* List of names for this register. The first name in this list is the
|
||||||
preferred name, the name GDB should use when describing this
|
preferred name, the name GDB should use when describing this
|
||||||
register. */
|
register. */
|
||||||
std::vector <const char *> names;
|
std::vector<const char *> names;
|
||||||
|
|
||||||
/* When true this register is required in this feature set. */
|
/* When true this register is required in this feature set. */
|
||||||
bool required_p;
|
bool required_p;
|
||||||
@ -127,7 +127,7 @@ struct riscv_register_feature
|
|||||||
|
|
||||||
/* List of all the registers that we expect that we might find in this
|
/* List of all the registers that we expect that we might find in this
|
||||||
register set. */
|
register set. */
|
||||||
std::vector <struct register_info> registers;
|
std::vector<struct register_info> registers;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* The general x-registers feature set. */
|
/* The general x-registers feature set. */
|
||||||
|
Reference in New Issue
Block a user