We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea33190 commit 0d17ff4Copy full SHA for 0d17ff4
crates/assert-instr-macro/src/lib.rs
@@ -91,7 +91,7 @@ pub fn assert_instr(
91
// Use an ABI on Windows that passes SIMD values in registers, like what
92
// happens on Unix (I think?) by default.
93
let abi = if cfg!(windows) {
94
- syn::LitStr::new("vectorcall", proc_macro2::Span::call_site())
+ syn::LitStr::new("sysv64", proc_macro2::Span::call_site())
95
} else {
96
syn::LitStr::new("C", proc_macro2::Span::call_site())
97
};
0 commit comments