sim: common: rename sim_print_config
print_sim_config has never been used anywhere, so rename it to follow the sim_* naming style for all other symbols we export.
This commit is contained in:
parent
cd6d537c48
commit
dbed468bcb
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2021-01-04 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
|
* sim-config.c (print_sim_config): Rename to ...
|
||||||
|
(sim_print_config): ... this.
|
||||||
|
* sim-config.h: Likewise.
|
||||||
|
|
||||||
2021-01-02 Mike Frysinger <vapier@gentoo.org>
|
2021-01-02 Mike Frysinger <vapier@gentoo.org>
|
||||||
|
|
||||||
* sim-bits.h (_ALIGNa, _FLOORa, ALIGN_8, ALIGN_16, ALIGN_PAGE,
|
* sim-bits.h (_ALIGNa, _FLOORa, ALIGN_8, ALIGN_16, ALIGN_PAGE,
|
||||||
|
|
|
@ -294,7 +294,7 @@ sim_config (SIM_DESC sd)
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
print_sim_config (SIM_DESC sd)
|
sim_print_config (SIM_DESC sd)
|
||||||
{
|
{
|
||||||
sim_io_printf (sd, "WITH_TARGET_BYTE_ORDER = %s\n",
|
sim_io_printf (sd, "WITH_TARGET_BYTE_ORDER = %s\n",
|
||||||
config_byte_order_to_a (WITH_TARGET_BYTE_ORDER));
|
config_byte_order_to_a (WITH_TARGET_BYTE_ORDER));
|
||||||
|
|
|
@ -313,7 +313,7 @@ extern SIM_RC sim_config (SIM_DESC sd);
|
||||||
|
|
||||||
/* Print the simulator configuration. */
|
/* Print the simulator configuration. */
|
||||||
|
|
||||||
extern void print_sim_config (SIM_DESC sd);
|
extern void sim_print_config (SIM_DESC sd);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue