Skip to content

Commit 82f60b8

Browse files
fix: update arch flags being sent to the x86 compilation command
1 parent 301b3e0 commit 82f60b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/intrinsic-test/src/x86/compile.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub fn build_cpp_compilation(config: &ProcessedCli) -> Option<CppCompilation> {
66

77
// -ffp-contract=off emulates Rust's approach of not fusing separate mul-add operations
88
let mut command = CompilationCommandBuilder::new()
9-
.add_arch_flags(vec![
9+
.add_arch_flags([
1010
"avx",
1111
"avx2",
1212
"avx512f",

0 commit comments

Comments
 (0)