Author: Timm Bäder Date: 2026-01-02T12:31:05+01:00 New Revision: 420da86a443e020b6e454518783f08268b0d4dce
URL: https://github.com/llvm/llvm-project/commit/420da86a443e020b6e454518783f08268b0d4dce DIFF: https://github.com/llvm/llvm-project/commit/420da86a443e020b6e454518783f08268b0d4dce.diff LOG: [clang][bytecode] Disable test on 32 bit systems The array we create is too big for those. See https://lab.llvm.org/buildbot/#/builders/154/builds/25860 Added: Modified: clang/test/AST/ByteCode/cxx03.cpp Removed: ################################################################################ diff --git a/clang/test/AST/ByteCode/cxx03.cpp b/clang/test/AST/ByteCode/cxx03.cpp index ff81ed04e8334..224e2e5d60ba7 100644 --- a/clang/test/AST/ByteCode/cxx03.cpp +++ b/clang/test/AST/ByteCode/cxx03.cpp @@ -47,6 +47,7 @@ struct S { }; const int s = S().w[1]; +#if __LP64__ namespace NullRecord { struct S { int arr[1024 * 1024 * 1024]; @@ -56,3 +57,4 @@ namespace NullRecord { S s[2] = {}; } +#endif _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
