sim: common: use sim_config_print name

Meant to push this variant where naming preference is given to the
module the code resides in rather than the operation it performs.
This commit is contained in:
Mike Frysinger 2021-01-04 18:09:31 -05:00
parent 19b1c38562
commit 2b667e3297
3 changed files with 3 additions and 3 deletions

View file

@ -7,7 +7,7 @@
2021-01-04 Mike Frysinger <vapier@gentoo.org>
* sim-config.c (print_sim_config): Rename to ...
(sim_print_config): ... this.
(sim_config_print): ... this.
* sim-config.h: Likewise.
2021-01-02 Mike Frysinger <vapier@gentoo.org>

View file

@ -294,7 +294,7 @@ sim_config (SIM_DESC sd)
void
sim_print_config (SIM_DESC sd)
sim_config_print (SIM_DESC sd)
{
sim_io_printf (sd, "WITH_TARGET_BYTE_ORDER = %s\n",
config_byte_order_to_a (WITH_TARGET_BYTE_ORDER));

View file

@ -313,7 +313,7 @@ extern SIM_RC sim_config (SIM_DESC sd);
/* Print the simulator configuration. */
extern void sim_print_config (SIM_DESC sd);
extern void sim_config_print (SIM_DESC sd);
#endif