[PATCH] D107244: [AIX] Define _ARCH_PPC64 macro for 32-bit

Hubert Tong via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 4 20:17:36 PDT 2021


hubert.reinterpretcast added inline comments.


================
Comment at: clang/lib/Basic/Targets/PPC.cpp:259
     Builder.defineMacro("__PPC64__");
+  // Also define _ARCH_PPC64 for 32-bit on AIX.
+  } else {
----------------
Merge `else` with single `if`-statement as the sole contents of the block into `else if`. Comment can be placed at the top of the block controlled by the `else if` (and, in that position, should be indented).


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D107244



More information about the cfe-commits mailing list