diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2025-04-10 09:59:01 -0400 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2025-04-10 09:59:01 -0400 |
commit | a5a7233dfcee5eb20ed4853c8a1f3cbebe352a7b (patch) | |
tree | 27755f1c6dd6bdc463f6d234bce60e9e4da330c1 | |
parent | 8c703f67b77b66fc022db47bace69823617459dc (diff) | |
download | gcc-a5a7233dfcee5eb20ed4853c8a1f3cbebe352a7b.zip gcc-a5a7233dfcee5eb20ed4853c8a1f3cbebe352a7b.tar.gz gcc-a5a7233dfcee5eb20ed4853c8a1f3cbebe352a7b.tar.bz2 |
hpux: Remove _GLIBCXX_USE_LONG_LONG define from hpux os_defines.h
_GLIBCXX_USE_LONG_LONG is now defined by configure.
2025-04-05 John David Anglin <danglin@gcc.gnu.org>
libstdc++-v3/ChangeLog:
* config/os/hpux/os_defines.h: Remove _GLIBCXX_USE_LONG_LONG
define.
-rw-r--r-- | libstdc++-v3/config/os/hpux/os_defines.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libstdc++-v3/config/os/hpux/os_defines.h b/libstdc++-v3/config/os/hpux/os_defines.h index d3a6c5a..acc1a02 100644 --- a/libstdc++-v3/config/os/hpux/os_defines.h +++ b/libstdc++-v3/config/os/hpux/os_defines.h @@ -52,10 +52,7 @@ Also note that the compiler defines _INCLUDE_LONGLONG for C++ unconditionally, which makes intmax_t and uintmax_t long long - types. - - We also force _GLIBCXX_USE_LONG_LONG here so that we don't have - to bastardize configure to deal with this sillyness. */ + types. */ #if __cplusplus >= 201103L namespace std @@ -77,8 +74,6 @@ namespace std } // namespace std #endif // __cplusplus -#define _GLIBCXX_USE_LONG_LONG 1 - // HPUX on IA64 requires vtable to be 64 bit aligned even at 32 bit // mode. We need to pad the vtable structure to achieve this. #if !defined(_LP64) && defined (__ia64__) |