diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /libdecnumber/dpd/decimal64Symbols.h | |
download | cbb-gcc-4.6.4-upstream.tar.bz2 cbb-gcc-4.6.4-upstream.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'libdecnumber/dpd/decimal64Symbols.h')
-rw-r--r-- | libdecnumber/dpd/decimal64Symbols.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libdecnumber/dpd/decimal64Symbols.h b/libdecnumber/dpd/decimal64Symbols.h new file mode 100644 index 000000000..efb644638 --- /dev/null +++ b/libdecnumber/dpd/decimal64Symbols.h @@ -0,0 +1,26 @@ +#if !defined(DECIMAL64SYMBOLS) +#define DECIMAL64SYMBOLS + +#ifdef IN_LIBGCC2 +#define decDigitsFromDPD __decDigitsFromDPD +#define decDigitsToDPD __decDigitsToDPD +#define decimal64Canonical __decimal64Canonical +#define decimal64FromNumber __decimal64FromNumber +#define decimal64FromString __decimal64FromString +#define decimal64IsCanonical __decimal64IsCanonical +#define decimal64ToEngString __decimal64ToEngString +#define decimal64ToNumber __decimal64ToNumber +#define decimal64ToString __decimal64ToString +#define COMBEXP __decnnCOMBEXP +#define COMBMSD __decnnCOMBMSD + +/* DPD2BIN and BIN2DPD are used in support for decimal32/decimal64/decimal128 + and also in support for decSingle/decDouble/decQuad. Rename them in case + both types of support are used in the same executable. */ +#undef DPD2BIN +#define DPD2BIN __decnnDPD2BIN +#undef BIN2DPD +#define BIN2DPD __decnnBIN2DPD +#endif + +#endif |