public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] sim: simplify STATE_MY_NAME setup [committed]
@ 2015-12-30  8:36 Mike Frysinger
  0 siblings, 0 replies; only message in thread
From: Mike Frysinger @ 2015-12-30  8:36 UTC (permalink / raw)
  To: gdb-patches

No point in writing basename ourselves when libiberty provides one.
---
 sim/common/ChangeLog    | 5 +++++
 sim/common/sim-module.c | 4 +---
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog
index ae94846..58ffa6c 100644
--- a/sim/common/ChangeLog
+++ b/sim/common/ChangeLog
@@ -1,3 +1,8 @@
+2015-12-30  Mike Frysinger  <vapier@gentoo.org>
+
+	* sim-module.c (sim_pre_argv_init): Change STATE_MY_NAME assignment
+	to use lbasename.
+
 2015-12-27  Mike Frysinger  <vapier@gentoo.org>
 
 	* Makefile.in (SIM_NEW_COMMON_OBJS): Add sim-hload.o.
diff --git a/sim/common/sim-module.c b/sim/common/sim-module.c
index 3d49f57..33f5740 100644
--- a/sim/common/sim-module.c
+++ b/sim/common/sim-module.c
@@ -74,9 +74,7 @@ sim_pre_argv_init (SIM_DESC sd, const char *myname)
   SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
   SIM_ASSERT (STATE_MODULES (sd) == NULL);
 
-  STATE_MY_NAME (sd) = myname + strlen (myname);
-  while (STATE_MY_NAME (sd) > myname && STATE_MY_NAME (sd)[-1] != '/')
-    --STATE_MY_NAME (sd);
+  STATE_MY_NAME (sd) = lbasename (myname);
 
   /* Set the cpu names to default values.  */
   {
-- 
2.6.2

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-12-30  8:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-30  8:36 [PATCH] sim: simplify STATE_MY_NAME setup [committed] Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).