diff options
author | DJ Delorie <dj@redhat.com> | 2008-06-11 01:17:34 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2008-06-11 01:17:34 +0000 |
commit | 5f5dfcbe1be67ac8e69cbbcc7c99786551d6cbbf (patch) | |
tree | b0a468317c8bb66c8ce38a23aa0efd93c88d60db /libdecnumber/dpd/decimal128Local.h | |
parent | 06c74433a779d34858f8cd54473a9076925dc400 (diff) | |
download | gdb-5f5dfcbe1be67ac8e69cbbcc7c99786551d6cbbf.zip gdb-5f5dfcbe1be67ac8e69cbbcc7c99786551d6cbbf.tar.gz gdb-5f5dfcbe1be67ac8e69cbbcc7c99786551d6cbbf.tar.bz2 |
merge from gcc
Diffstat (limited to 'libdecnumber/dpd/decimal128Local.h')
-rw-r--r-- | libdecnumber/dpd/decimal128Local.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdecnumber/dpd/decimal128Local.h b/libdecnumber/dpd/decimal128Local.h index b4130b5..9765427 100644 --- a/libdecnumber/dpd/decimal128Local.h +++ b/libdecnumber/dpd/decimal128Local.h @@ -34,14 +34,14 @@ /* Set sign; this assumes the sign was previously zero. */ #define decimal128SetSign(d,b) \ - { (d)->bytes[FLOAT_WORDS_BIG_ENDIAN ? 0 : 15] |= ((unsigned) (b) << 7); } + { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] |= ((unsigned) (b) << 7); } /* Clear sign. */ #define decimal128ClearSign(d) \ - { (d)->bytes[FLOAT_WORDS_BIG_ENDIAN ? 0 : 15] &= ~0x80; } + { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] &= ~0x80; } /* Flip sign. */ #define decimal128FlipSign(d) \ - { (d)->bytes[FLOAT_WORDS_BIG_ENDIAN ? 0 : 15] ^= 0x80; } + { (d)->bytes[WORDS_BIGENDIAN ? 0 : 15] ^= 0x80; } #endif |