This is the mail archive of the gdb-patches@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]

[PATCH] sim: h8300: drop unused littleendian variable


---
 sim/h8300/ChangeLog |  5 +++++
 sim/h8300/compile.c | 13 -------------
 2 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog
index 78b3b82..ce77765 100644
--- a/sim/h8300/ChangeLog
+++ b/sim/h8300/ChangeLog
@@ -1,3 +1,8 @@
+2015-11-09  Mike Frysinger  <vapier@gentoo.org>
+
+	* compile.c (littleendian): Delete.
+	(init_pointers): Delete littleendian usage.
+
 2015-06-23  Mike Frysinger  <vapier@gentoo.org>
 
 	* configure: Regenerate.
diff --git a/sim/h8300/compile.c b/sim/h8300/compile.c
index d084b5d..f3f794d 100644
--- a/sim/h8300/compile.c
+++ b/sim/h8300/compile.c
@@ -1750,17 +1750,6 @@ store2 (SIM_DESC sd, ea_type *arg, int n)
   return store_1 (sd, arg, n, 1);
 }
 
-static union
-{
-  short int i;
-  struct
-    {
-      char low;
-      char high;
-    }
-  u;
-} littleendian;
-
 /* Flag to be set whenever a new SIM_DESC object is created.  */
 static int init_pointers_needed = 1;
 
@@ -1771,8 +1760,6 @@ init_pointers (SIM_DESC sd)
     {
       int i;
 
-      littleendian.i = 1;
-
       if (h8300smode && !h8300_normal_mode)
 	memory_size = H8300S_MSIZE;
       else if (h8300hmode && !h8300_normal_mode)
-- 
2.6.2


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