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:
Ian Lance Taylor 1992-08-28 00:08:35 +00:00
parent 8e3d11580a
commit 94cc1ee79d
2 changed files with 10 additions and 0 deletions

View File

@ -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

View File

@ -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
}