[clang] [llvm] [Clang][X86] Add Clang23Compat for __int128 bit-field ABI change (PR #220788)

Phoebe Wang via cfe-commits cfe-commits at lists.llvm.org
Sat Sep 5 05:16:34 PDT 2026


================
@@ -2200,16 +2200,23 @@ void X86_64ABIInfo::classify(QualType Ty, uint64_t OffsetBase, Class &Lo,
     bool UseClang11Compat = getContext().getLangOpts().isCompatibleWith(
                                 LangOptions::ClangABI::Ver11) ||
                             getContext().getTargetInfo().getTriple().isPS();
+    bool ClassifyUnnamedBitFields =
+        getContext().getLangOpts().getClangABICompat() >
+        LangOptions::ClangABI::Ver23;
----------------
phoebewang wrote:

Done.

https://github.com/llvm/llvm-project/pull/220788


More information about the cfe-commits mailing list