@@ -12,30 +12,28 @@ fn find_assembly(
12
12
// is not supported in Windows. For x86_64 the implementation actually works locally,
13
13
// but failed tests in CI (???). Might want to have a feature for experimental support
14
14
// here.
15
- ( "x86" , _, "windows" , "msvc" ) => {
15
+ ( "x86" , _, "windows" , _ ) => {
16
16
if masm {
17
17
Some ( ( "src/arch/x86_msvc.asm" , false ) )
18
18
} else {
19
19
Some ( ( "src/arch/x86_windows_gnu.s" , false ) )
20
20
}
21
21
}
22
- ( "x86_64" , _, "windows" , "msvc" ) => {
22
+ ( "x86_64" , _, "windows" , _ ) => {
23
23
if masm {
24
24
Some ( ( "src/arch/x86_64_msvc.asm" , false ) )
25
25
} else {
26
26
Some ( ( "src/arch/x86_64_windows_gnu.s" , false ) )
27
27
}
28
28
}
29
29
( "arm" , _, "windows" , "msvc" ) => Some ( ( "src/arch/arm_armasm.asm" , false ) ) ,
30
- ( "aarch64" , _, "windows" , "msvc" ) => {
30
+ ( "aarch64" , _, "windows" , _ ) => {
31
31
if masm {
32
32
Some ( ( "src/arch/aarch64_armasm.asm" , false ) )
33
33
} else {
34
34
Some ( ( "src/arch/aarch_aapcs64.s" , false ) )
35
35
}
36
36
}
37
- ( "x86" , _, "windows" , _) => Some ( ( "src/arch/x86_windows_gnu.s" , false ) ) ,
38
- ( "x86_64" , _, "windows" , _) => Some ( ( "src/arch/x86_64_windows_gnu.s" , false ) ) ,
39
37
( "x86" , _, _, _) => Some ( ( "src/arch/x86.s" , true ) ) ,
40
38
( "x86_64" , _, _, _) => Some ( ( "src/arch/x86_64.s" , true ) ) ,
41
39
( "arm" , _, _, _) => Some ( ( "src/arch/arm_aapcs.s" , true ) ) ,
0 commit comments