]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim: config: do not try to align settings
authorMike Frysinger <vapier@gentoo.org>
Mon, 4 Jan 2016 00:11:06 +0000 (19:11 -0500)
committerMike Frysinger <vapier@gentoo.org>
Mon, 11 Jan 2016 05:58:55 +0000 (00:58 -0500)
We try to align the output for a few settings, but not most of them.
Drop the aligning entirely to be lazy.

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

index 7b5c8f988cf6413c942f027c7b0643150c265d74..b2912fe759ca60c10d44974a0514df10aaadc455 100644 (file)
@@ -1,3 +1,8 @@
+2016-01-11  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-config.c (print_sim_config): Drop extra whitespace before =
+       in output for byte order, stdio, and msb settings.
+
 2016-01-10  Mike Frysinger  <vapier@gentoo.org>
 
        * acinclude.m4 (SIM_AC_COMMON): Call AC_MSG_CHECKING,
index 9da710573d93881741fc804dd5e8568600e8dee6..7f6ac92550b89f78a43ef63b1a5f8acb36f1402c 100644 (file)
@@ -296,19 +296,19 @@ sim_config (SIM_DESC sd)
 void
 print_sim_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));
 
-  sim_io_printf (sd, "WITH_DEFAULT_TARGET_BYTE_ORDER   = %s\n",
+  sim_io_printf (sd, "WITH_DEFAULT_TARGET_BYTE_ORDER = %s\n",
                 config_byte_order_to_a (WITH_DEFAULT_TARGET_BYTE_ORDER));
 
-  sim_io_printf (sd, "HOST_BYTE_ORDER          = %s\n",
+  sim_io_printf (sd, "HOST_BYTE_ORDER = %s\n",
                 config_byte_order_to_a (HOST_BYTE_ORDER));
 
-  sim_io_printf (sd, "WITH_STDIO               = %s\n",
+  sim_io_printf (sd, "WITH_STDIO = %s\n",
                 config_stdio_to_a (WITH_STDIO));
 
-  sim_io_printf (sd, "WITH_TARGET_WORD_MSB     = %d\n",
+  sim_io_printf (sd, "WITH_TARGET_WORD_MSB = %d\n",
                 WITH_TARGET_WORD_MSB);
 
   sim_io_printf (sd, "WITH_TARGET_WORD_BITSIZE = %d\n",