[flang-commits] [PATCH] D124423: [flang] Get ppc64le build bot back up

Nemanja Ivanovic via Phabricator via flang-commits flang-commits at lists.llvm.org
Tue Apr 26 07:20:44 PDT 2022


nemanjai added a comment.

This can go in as it is. Both Clang and GCC define this macro on PPC. However, it will mean that we don't define these even for compilations with `-mabi=ieeelongdouble` and `-mlong-double-64`. If it matters that this works when `long double` means `IEEE 754-R Quad Precision` or simply double precision, you could guard it with something like the following

  #if defined(__PPC__) && defined(__LONG_DOUBLE_128__) && !defined(__LONG_DOUBLE_IEEE128__)


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

https://reviews.llvm.org/D124423



More information about the flang-commits mailing list