diff options
author | John David Anglin <dave@hiauly1.hia.nrc.ca> | 2002-05-12 01:01:21 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2002-05-12 01:01:21 +0000 |
commit | 1f121cdbdd63444dc2e1fe8fd1000877fb60da14 (patch) | |
tree | f125e5e7de6ff474a4b0fd888c6e3f233469ee8e /libstdc++-v3 | |
parent | 12877f09db217202ba7105136a6b944425295ff5 (diff) | |
download | gcc-1f121cdbdd63444dc2e1fe8fd1000877fb60da14.zip gcc-1f121cdbdd63444dc2e1fe8fd1000877fb60da14.tar.gz gcc-1f121cdbdd63444dc2e1fe8fd1000877fb60da14.tar.bz2 |
os_defines.h (__glibcpp_long_bits): Define to 64 for hppa 64-bit port.
* config/os/gnu-linux/bits/os_defines.h (__glibcpp_long_bits): Define
to 64 for hppa 64-bit port.
(__glibcpp_long_double_bits): Define to 64 for all hppa ports.
From-SVN: r53388
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/config/os/gnu-linux/bits/os_defines.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 529f395..368b613 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2002-05-11 John David Anglin <dave@hiauly1.hia.nrc.ca> + + * config/os/gnu-linux/bits/os_defines.h (__glibcpp_long_bits): Define + to 64 for hppa 64-bit port. + (__glibcpp_long_double_bits): Define to 64 for all hppa ports. + 2002-05-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> * acinclude.m4 (enable_symvers): Quote $LD. diff --git a/libstdc++-v3/config/os/gnu-linux/bits/os_defines.h b/libstdc++-v3/config/os/gnu-linux/bits/os_defines.h index d5ed77c..4405660 100644 --- a/libstdc++-v3/config/os/gnu-linux/bits/os_defines.h +++ b/libstdc++-v3/config/os/gnu-linux/bits/os_defines.h @@ -65,11 +65,11 @@ typedef __loff_t __off64_t; #define __NO_STRING_INLINES #endif -#if defined(__powerpc64__) || defined(__s390x__) || (defined(__sparc__) && defined(__arch64__)) +#if (defined(__hppa__) && defined(__LP64__)) || defined(__powerpc64__) || defined(__s390x__) || (defined(__sparc__) && defined(__arch64__)) #define __glibcpp_long_bits 64 #endif -#if defined(__sparc__) && !defined(__arch64__) +#if defined(__hppa__) || (defined(__sparc__) && !defined(__arch64__)) #define __glibcpp_long_double_bits 64 #endif |