]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim: common: rename sim_print_config
authorMike Frysinger <vapier@gentoo.org>
Mon, 4 Jan 2016 00:10:49 +0000 (19:10 -0500)
committerMike Frysinger <vapier@gentoo.org>
Mon, 4 Jan 2021 22:35:20 +0000 (17:35 -0500)
print_sim_config has never been used anywhere, so rename it to follow
the sim_* naming style for all other symbols we export.

sim/common/ChangeLog
sim/common/sim-config.c
sim/common/sim-config.h

index 0545493f5718d9f1236487388a26566c169c5e7c..e815aeafd6502cf1847143aaa360b7a43168aebe 100644 (file)
@@ -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>
 
        * sim-bits.h (_ALIGNa, _FLOORa, ALIGN_8, ALIGN_16, ALIGN_PAGE,
index ba3e372c159245e3a70a3cbdd34f0fbc00edaf9e..59ee2d8f322a1a23e367df73d6ee4f5094801e22 100644 (file)
@@ -294,7 +294,7 @@ sim_config (SIM_DESC sd)
 
 
 void
-print_sim_config (SIM_DESC sd)
+sim_print_config (SIM_DESC sd)
 {
   sim_io_printf (sd, "WITH_TARGET_BYTE_ORDER = %s\n",
                 config_byte_order_to_a (WITH_TARGET_BYTE_ORDER));
index 8e70bc8210b57a63d410302f5f72c124a6d85464..43c0327fd526e69fb16c08bf4dc5100c2918fd87 100644 (file)
@@ -313,7 +313,7 @@ extern SIM_RC sim_config (SIM_DESC sd);
 
 /* Print the simulator configuration.  */
 
-extern void print_sim_config (SIM_DESC sd);
+extern void sim_print_config (SIM_DESC sd);
 
 
 #endif