We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8c89601 + d58863f commit 1533eafCopy full SHA for 1533eaf
compiler/rustc_target/src/asm/mod.rs
@@ -882,8 +882,8 @@ impl InlineAsmClobberAbi {
882
_ => Err(&["C", "system", "efiapi"]),
883
},
884
InlineAsmArch::LoongArch64 => match name {
885
- "C" | "system" | "efiapi" => Ok(InlineAsmClobberAbi::LoongArch),
886
- _ => Err(&["C", "system", "efiapi"]),
+ "C" | "system" => Ok(InlineAsmClobberAbi::LoongArch),
+ _ => Err(&["C", "system"]),
887
888
_ => Err(&[]),
889
}
0 commit comments