Skip to content

Commit 42ecccf

Browse files
authored
[libcxx] Fix incorrect type in the has-1024-bit-atomics feature test (#84904)
1 parent 536e0eb commit 42ecccf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/utils/libcxx/test/features.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def _getAndroidDeviceApi(cfg):
176176
cfg,
177177
"""
178178
#include <atomic>
179-
struct Large { int storage[1024/8]; };
179+
struct Large { char storage[1024/8]; };
180180
std::atomic<Large> x;
181181
int main(int, char**) { (void)x.load(); (void)x.is_lock_free(); return 0; }
182182
""",

0 commit comments

Comments
 (0)