sim: h8300: drop unused littleendian variable

This commit is contained in:
Mike Frysinger 2015-11-08 21:41:53 -05:00
parent 87d094f308
commit 5697b730e2
2 changed files with 5 additions and 13 deletions

View File

@ -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.

View File

@ -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)