This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] sim: simplify STATE_MY_NAME setup


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=9950eccba15155dda9ef8025a5a1685dd9db53b7

commit 9950eccba15155dda9ef8025a5a1685dd9db53b7
Author: Mike Frysinger <vapier@gentoo.org>
Date:   Tue Dec 29 23:54:12 2015 -0500

    sim: simplify STATE_MY_NAME setup
    
    No point in writing basename ourselves when libiberty provides one.

Diff:
---
 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.  */
   {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]