[libcxx-commits] [PATCH] D137513: [libc++] Replace __ppc64__ with __powerpc64__

Daniel Kolesa via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Nov 7 10:14:35 PST 2022


q66 added a comment.

yes, my patch effectively accounts for both modes; `-mabi=ieeelongdouble` is accounted for with the first expression (`__LDBL_MAX_EXP__ > __DBL_MAX_EXP__`; with `ibmlongdouble`, it is true that `__LDBL_MAX_EXP__ == __DBL_MAX_EXP__`) while `-mlong-double-64` is accounted for with the second expression (`__LDBL_MANT_DIG__ == __DBL_MANT_DIG__`)


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D137513/new/

https://reviews.llvm.org/D137513



More information about the libcxx-commits mailing list