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:
@@ -5,7 +5,7 @@ pub fn target() -> Target {
|
|||||||
base.cpu = "x86-64".into();
|
base.cpu = "x86-64".into();
|
||||||
base.features = "+cx16,+sse3".into();
|
base.features = "+cx16,+sse3".into();
|
||||||
base.plt_by_default = false;
|
base.plt_by_default = false;
|
||||||
base.max_atomic_width = Some(64);
|
base.max_atomic_width = Some(128);
|
||||||
base.supported_sanitizers = SanitizerSet::ADDRESS;
|
base.supported_sanitizers = SanitizerSet::ADDRESS;
|
||||||
|
|
||||||
Target {
|
Target {
|
||||||
|
|||||||
Reference in New Issue
Block a user