mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
* config/tc-sh.c (md_apply_fix3): Don't zero relocations on big
endian hosts.
This commit is contained in:
parent
c80b2f7704
commit
2ed5f585e4
@ -1,3 +1,8 @@
|
||||
Tue Apr 9 15:17:53 2002 J"orn Rennecke <joern.rennecke@superh.com>
|
||||
|
||||
* config/tc-sh.c (md_apply_fix3): Don't zero relocations on big
|
||||
endian hosts.
|
||||
|
||||
2002-04-04 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* dep-in.sed: Cope with absolute paths.
|
||||
|
@ -3310,7 +3310,7 @@ md_apply_fix3 (fixP, valP, seg)
|
||||
char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
|
||||
int lowbyte = target_big_endian ? 1 : 0;
|
||||
int highbyte = target_big_endian ? 0 : 1;
|
||||
long val = * (long *) valP;
|
||||
long val = (long) *valP;
|
||||
long max, min;
|
||||
int shift;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user