Skip to content

Commit a53d83f

Browse files
committed
Disable the swift::atomic<..., 16> specialization until we can
figure out how to convince clang-cl to accept it. We need to make progress.
1 parent 945011d commit a53d83f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/swift/Runtime/Atomic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ class alignas(Size) atomic_impl {
6666
}
6767
};
6868

69-
#if defined(_WIN64)
69+
// FIXME: get this to build reliably
70+
#if 0 && defined(_WIN64)
7071
#include <intrin.h>
7172

7273
/// MSVC's std::atomic uses an inline spin lock for 16-byte atomics,

0 commit comments

Comments
 (0)