[clang] 82c25d2 - [clang][bytecode] Disable i686 test

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 24 02:38:08 PDT 2025


Author: Timm Bäder
Date: 2025-04-24T11:37:54+02:00
New Revision: 82c25d27501996683f30eb92dabf8a11925b7a62

URL: https://github.com/llvm/llvm-project/commit/82c25d27501996683f30eb92dabf8a11925b7a62
DIFF: https://github.com/llvm/llvm-project/commit/82c25d27501996683f30eb92dabf8a11925b7a62.diff

LOG: [clang][bytecode] Disable i686 test

The array is too big and we don't have array fillers yet, see
e.g. https://lab.llvm.org/buildbot/#/builders/154/builds/15255

Added: 
    

Modified: 
    clang/test/AST/ByteCode/i686.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/AST/ByteCode/i686.cpp b/clang/test/AST/ByteCode/i686.cpp
index ad914203d3c4b..dafa3eae284c5 100644
--- a/clang/test/AST/ByteCode/i686.cpp
+++ b/clang/test/AST/ByteCode/i686.cpp
@@ -2,6 +2,10 @@
 // RUN: %clang_cc1 -triple i686-pc-linux-gnu                                         -verify=ref,both      %s
 
 
+// both-no-diagnostics
+
+/// FIXME: Allocating the array below causes OOM failures with the bytecode interpreter.
+#if 0
 char melchizedek[2200000000];
 typedef decltype(melchizedek[1] - melchizedek[0]) ptr
diff _t;
 constexpr ptr
diff _t d1 = &melchizedek[0x7fffffff] - &melchizedek[0];
@@ -10,5 +14,4 @@ constexpr ptr
diff _t d2 = &melchizedek[0x80000000u] - &melchizedek[0]; // both-er
 constexpr ptr
diff _t d3 = &melchizedek[0] - &melchizedek[0x80000000u];
 constexpr ptr
diff _t d4 = &melchizedek[0] - &melchizedek[0x80000001u]; // both-error {{constant expression}} \
                                                                       // both-note {{ -2147483649 }}
-
-
+#endif


        


More information about the cfe-commits mailing list