aboutsummaryrefslogtreecommitdiff
path: root/build-aux/m4
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-04-12 09:52:06 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-04-12 09:52:06 +0200
commitdd3e0fa12534c9e782dc9c24d2e30b70a0d73176 (patch)
treeec143cc512ce1f38580af25cd4c72803d311d8cc /build-aux/m4
parent0de63b8b46eff5cda85b4950062703324ba65a80 (diff)
downloadbitcoin-dd3e0fa12534c9e782dc9c24d2e30b70a0d73176.tar.xz
build: Fix false positive `CHECK_ATOMIC` test for clang-15
Diffstat (limited to 'build-aux/m4')
-rw-r--r--build-aux/m4/l_atomic.m47
1 files changed, 5 insertions, 2 deletions
diff --git a/build-aux/m4/l_atomic.m4 b/build-aux/m4/l_atomic.m4
index aa00168fce..859ddaabbb 100644
--- a/build-aux/m4/l_atomic.m4
+++ b/build-aux/m4/l_atomic.m4
@@ -7,7 +7,7 @@ dnl warranty.
# Clang, when building for 32-bit,
# and linking against libstdc++, requires linking with
# -latomic if using the C++ atomic library.
-# Can be tested with: clang++ test.cpp -m32
+# Can be tested with: clang++ -std=c++20 test.cpp -m32
#
# Sourced from http://bugs.debian.org/797228
@@ -27,8 +27,11 @@ m4_define([_CHECK_ATOMIC_testbody], [[
auto t1 = t.load();
t.compare_exchange_strong(t1, 3s);
- std::atomic<int64_t> a{};
+ std::atomic<double> d{};
+ d.store(3.14);
+ auto d1 = d.load();
+ std::atomic<int64_t> a{};
int64_t v = 5;
int64_t r = a.fetch_add(v);
return static_cast<int>(r);