diff options
| author | WANG Rui <wangrui@loongson.cn> | 2023-05-12 17:22:47 +0800 |
|---|---|---|
| committer | WANG Rui <wangrui@loongson.cn> | 2023-05-12 17:22:47 +0800 |
| commit | d58863fe43ee9f0c9a750178950415299e1b8335 (patch) | |
| tree | a3db5d1a3630039f212d8a0c6ca76e18ec037bfd /compiler/rustc_target/src/asm/mod.rs | |
| parent | 699a862a3d4e4a2d5603c93297c0c44021ea72f5 (diff) | |
| download | rust-d58863fe43ee9f0c9a750178950415299e1b8335.tar.gz rust-d58863fe43ee9f0c9a750178950415299e1b8335.zip | |
asm: loongarch64: Drop efiapi
Diffstat (limited to 'compiler/rustc_target/src/asm/mod.rs')
| -rw-r--r-- | compiler/rustc_target/src/asm/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_target/src/asm/mod.rs b/compiler/rustc_target/src/asm/mod.rs index 705966f5237..e60b8e78e5d 100644 --- a/compiler/rustc_target/src/asm/mod.rs +++ b/compiler/rustc_target/src/asm/mod.rs @@ -882,8 +882,8 @@ impl InlineAsmClobberAbi { _ => Err(&["C", "system", "efiapi"]), }, InlineAsmArch::LoongArch64 => match name { - "C" | "system" | "efiapi" => Ok(InlineAsmClobberAbi::LoongArch), - _ => Err(&["C", "system", "efiapi"]), + "C" | "system" => Ok(InlineAsmClobberAbi::LoongArch), + _ => Err(&["C", "system"]), }, _ => Err(&[]), } |
