mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 04:00:07 +08:00
Thu Aug 27 16:38:42 1992 Ian Lance Taylor (ian@cygnus.com)
* gld960.em (gld960_choose_target): the target depends on HOST_BIG_ENDIAN_P.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
Thu Aug 27 16:38:42 1992 Ian Lance Taylor (ian@cygnus.com)
|
||||||
|
|
||||||
|
* gld960.em (gld960_choose_target): the target depends on
|
||||||
|
HOST_BIG_ENDIAN_P.
|
||||||
|
|
||||||
Wed Aug 26 17:28:51 1992 Steve Chamberlain (sac@thepub.cygnus.com)
|
Wed Aug 26 17:28:51 1992 Steve Chamberlain (sac@thepub.cygnus.com)
|
||||||
|
|
||||||
* ldlang.c (lang_process): don't pass null pointers when
|
* ldlang.c (lang_process): don't pass null pointers when
|
||||||
|
@ -104,7 +104,12 @@ gld960_choose_target()
|
|||||||
|
|
||||||
if (from_outside != (char *)NULL)
|
if (from_outside != (char *)NULL)
|
||||||
return from_outside;
|
return from_outside;
|
||||||
|
|
||||||
|
#ifdef HOST_BIG_ENDIAN_P
|
||||||
return "b.out.big";
|
return "b.out.big";
|
||||||
|
#else
|
||||||
|
return "b.out.little";
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user