-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* stdlib/isomac.c (fmt): Don't define _LIBC. * include/endian.h: Define BIG_ENDI, LITTLE_ENDI, HIGH_HALF, and LOW_HALF only if _LIBC is defined. * sysdeps/i386/fpu/libm-test-ulps: Slight adjustment of yn() error.
- Loading branch information
Ulrich Drepper
committed
Mar 28, 2001
1 parent
9dedc96
commit 4668903
Showing
6 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
#include <string/endian.h> | ||
|
||
#if __FLOAT_WORD_ORDER == __BIG_ENDIAN | ||
#define BIG_ENDI 1 | ||
#undef LITTLE_ENDI | ||
#define HIGH_HALF 0 | ||
#define LOW_HALF 1 | ||
#else | ||
#if __FLOAT_WORD_ORDER == __LITTLE_ENDIAN | ||
#undef BIG_ENDI | ||
#define LITTLE_ENDI 1 | ||
#define HIGH_HALF 1 | ||
#define LOW_HALF 0 | ||
#endif | ||
#ifdef _LIBC | ||
# if __FLOAT_WORD_ORDER == __BIG_ENDIAN | ||
# define BIG_ENDI 1 | ||
# undef LITTLE_ENDI | ||
# define HIGH_HALF 0 | ||
# define LOW_HALF 1 | ||
# else | ||
# if __FLOAT_WORD_ORDER == __LITTLE_ENDIAN | ||
# undef BIG_ENDI | ||
# define LITTLE_ENDI 1 | ||
# define HIGH_HALF 1 | ||
# define LOW_HALF 0 | ||
# endif | ||
# endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ branred.h | |
dla.h | ||
doasin.h | ||
dosincos.h | ||
endian.h | ||
MathLib.h | ||
mpa.h | ||
mpa2.h | ||
|