mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
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:
parent
d6766e2bc8
commit
fcb06f7ca2
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user