Skip to content

Commit

Permalink
Update x86_64_uwp_windows_msvc.rs
Browse files Browse the repository at this point in the history
Updated x86_64-uwp-windows-msvc to use CMPXCHG16B and SSE3
  • Loading branch information
CKingX authored Feb 9, 2024
1 parent 2091c25 commit 4e27845
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ use crate::spec::{base, Target};
pub fn target() -> Target {
let mut base = base::windows_uwp_msvc::opts();
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);

Target {
llvm_target: "x86_64-pc-windows-msvc".into(),
Expand Down

0 comments on commit 4e27845

Please sign in to comment.