mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +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:
parent
8e3d11580a
commit
94cc1ee79d
@ -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)
|
||||
|
||||
* ldlang.c (lang_process): don't pass null pointers when
|
||||
|
@ -104,7 +104,12 @@ gld960_choose_target()
|
||||
|
||||
if (from_outside != (char *)NULL)
|
||||
return from_outside;
|
||||
|
||||
#ifdef HOST_BIG_ENDIAN_P
|
||||
return "b.out.big";
|
||||
#else
|
||||
return "b.out.little";
|
||||
#endif
|
||||
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user