mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
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:
parent
b215186bfd
commit
045b540e8e
@ -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.
|
||||
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user