diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-11-02 08:33:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-02 08:33:13 +0100 |
| commit | b1d059fc2bc2ab7b24502ae91cd9e24c13878935 (patch) | |
| tree | 170d2f9368b18624c76b755035692a3966af95c1 | |
| parent | fa69b671a99a333aaf4ef2a9ca66eaa138e42108 (diff) | |
| parent | 57673dd6463856c8bad426dc7508c69fa3369122 (diff) | |
| download | rust-b1d059fc2bc2ab7b24502ae91cd9e24c13878935.tar.gz rust-b1d059fc2bc2ab7b24502ae91cd9e24c13878935.zip | |
Rollup merge of #132457 - taiki-e:needless-feature, r=workingjubilee
Remove needless #![feature(asm_experimental_arch)] from loongarch64 inline assembly test inline assembly is already stable on this architecture.
| -rw-r--r-- | tests/assembly/asm/loongarch-type.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/assembly/asm/loongarch-type.rs b/tests/assembly/asm/loongarch-type.rs index 1b097f41105..c51d35876d9 100644 --- a/tests/assembly/asm/loongarch-type.rs +++ b/tests/assembly/asm/loongarch-type.rs @@ -3,7 +3,7 @@ //@ compile-flags: -Zmerge-functions=disabled //@ needs-llvm-components: loongarch -#![feature(no_core, lang_items, rustc_attrs, asm_experimental_arch)] +#![feature(no_core, lang_items, rustc_attrs)] #![crate_type = "rlib"] #![no_core] #![allow(asm_sub_register, non_camel_case_types)] |
