]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
os_defines.h (__glibcpp_long_bits): Define to 64 for hppa 64-bit port.
authorJohn David Anglin <dave@hiauly1.hia.nrc.ca>
Sat, 1 Jun 2002 00:41:20 +0000 (00:41 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sat, 1 Jun 2002 00:41:20 +0000 (00:41 +0000)
* 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: r54127

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/gnu-linux/bits/os_defines.h

index b4c5dbbd9839f7c56bfe3d93a6aa0a5c71fa15ab..0c0688ae804ddb9b1921f7c89f94dfd86b6447e3 100644 (file)
@@ -1,3 +1,9 @@
+2002-05-31  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-30     Marc Espie <espie@openbsd.org>
        * configure.in:  Always check for sys/types.h.
        * configure:  Regenerate.
index d5ed77cde446f892a829ffc1c770f347da766bff..4405660f0e47c63c94689c269c62b3b8bcf56825 100644 (file)
@@ -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