[PATCH] D117935: [AIX][clang] include_next through clang provided float.h

Hubert Tong via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 21 19:09:33 PST 2022


hubert.reinterpretcast added a comment.

More comments may follow, but didn't want to delay the first one.



================
Comment at: clang/lib/Headers/float.h:20-21
  */
-#if (defined(__APPLE__) || (defined(__MINGW32__) || defined(_MSC_VER))) && \
-    __STDC_HOSTED__ && __has_include_next(<float.h>)
+#if (defined(__APPLE__) || (defined(__MINGW32__) || defined(_MSC_VER))) ||     \
+    defined(_AIX) && __STDC_HOSTED__ && __has_include_next(<float.h>)
 
----------------
Fix the binding of the `&&` and remove the preexisting excess parentheses.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D117935



More information about the cfe-commits mailing list