aboutsummaryrefslogtreecommitdiff
path: root/libcxx
diff options
context:
space:
mode:
authoramilendra <amilendra.kodithuwakku@arm.com>2024-03-12 18:17:13 +0000
committerGitHub <noreply@github.com>2024-03-12 14:17:13 -0400
commit42ecccfe346daf342b6c46a6a471ba5ed99b1139 (patch)
tree6634df6bb2add38ac3245d6e79fa80eb6bdf333a /libcxx
parent536e0ebaaa842471ae91bbda4f8cc1821690861e (diff)
downloadllvm-42ecccfe346daf342b6c46a6a471ba5ed99b1139.zip
llvm-42ecccfe346daf342b6c46a6a471ba5ed99b1139.tar.gz
llvm-42ecccfe346daf342b6c46a6a471ba5ed99b1139.tar.bz2
[libcxx] Fix incorrect type in the has-1024-bit-atomics feature test (#84904)
Diffstat (limited to 'libcxx')
-rw-r--r--libcxx/utils/libcxx/test/features.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/utils/libcxx/test/features.py b/libcxx/utils/libcxx/test/features.py
index 4fd8798..872bff3 100644
--- a/libcxx/utils/libcxx/test/features.py
+++ b/libcxx/utils/libcxx/test/features.py
@@ -176,7 +176,7 @@ DEFAULT_FEATURES = [
cfg,
"""
#include <atomic>
- struct Large { int storage[1024/8]; };
+ struct Large { char storage[1024/8]; };
std::atomic<Large> x;
int main(int, char**) { (void)x.load(); (void)x.is_lock_free(); return 0; }
""",