[PATCH] D142358: Opting out of Clang 15 ABI Changes for AIX and z/OS
Hubert Tong via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 23 13:57:45 PST 2023
hubert.reinterpretcast added inline comments.
================
Comment at: clang/test/SemaCXX/class-layout.cpp:18
// expected-no-diagnostics
+#if !defined(__MVS__) && !defined(_AIX)
----------------
dblaikie wrote:
> What's the reason this part is #ifdef'd out? Does it contain code that's unsupported on these platforms?
The correct values need to be evaluated for those parts. This test was never run with those platforms as targets. We're trying to get the newer tests enabled first.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D142358/new/
https://reviews.llvm.org/D142358
More information about the cfe-commits
mailing list