Update x86_64_pc_windows_msvc.rs

As CMPXCHG16B is supported, I updated the max atomic width to 128-bits from 64-bits
This commit is contained in:
CKingX 2024-02-09 09:19:59 -08:00 committed by GitHub
parent d6766e2bc8
commit fcb06f7ca2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,7 +5,7 @@ pub fn target() -> Target {
base.cpu = "x86-64".into();
base.features = "+cx16,+sse3".into();
base.plt_by_default = false;
base.max_atomic_width = Some(64);
base.max_atomic_width = Some(128);
base.supported_sanitizers = SanitizerSet::ADDRESS;
Target {