2005-04-10 H.J. Lu <hongjiu.lu@intel.com>

* config/tc-m68k.c (md_begin): Support 64bit host.
	(get_num): Support 64bit BFD on 32bit host.
This commit is contained in:
H.J. Lu 2005-04-10 16:28:08 +00:00
parent b215186bfd
commit 045b540e8e
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-04-10 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-m68k.c (md_begin): Support 64bit host.
(get_num): Support 64bit BFD on 32bit host.
2005-04-10 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-mips.c (md_apply_fix3): Fix typos in BFD_RELOC_64.

View File

@ -4160,7 +4160,7 @@ md_begin (void)
m68k_sorted_opcodes = xmalloc (m68k_numopcodes * sizeof (* m68k_sorted_opcodes));
if (!m68k_sorted_opcodes)
as_fatal (_("Internal Error: Can't allocate m68k_sorted_opcodes of size %d"),
m68k_numopcodes * sizeof (* m68k_sorted_opcodes));
m68k_numopcodes * ((int) sizeof (* m68k_sorted_opcodes)));
for (i = m68k_numopcodes; i--;)
m68k_sorted_opcodes[i] = m68k_opcodes + i;
@ -5292,7 +5292,7 @@ get_num (struct m68k_exp *exp, int ok)
subs (exp) = 0;
offs (exp) = (ok == 10) ? 1 : 0;
as_warn (_("Can't deal with expression; defaulting to %ld"),
offs (exp));
(long) offs (exp));
}
}
else
@ -5304,7 +5304,7 @@ get_num (struct m68k_exp *exp, int ok)
subs (exp) = 0;
offs (exp) = (ok == 10) ? 1 : 0;
as_warn (_("Can't deal with expression; defaulting to %ld"),
offs (exp));
(long) offs (exp));
}
}