Rollup merge of #138371 - cuviper:stable-asm-test, r=jieyouxu
Update compiletest's `has_asm_support` to match rustc The list of `ASM_SUPPORTED_ARCHS` was missing a few from the compiler's actual stable list.
This commit is contained in:
commit
459d5b5807
2 changed files with 10 additions and 1 deletions
|
@ -38,6 +38,7 @@ impl<'a, 'hir> LoweringContext<'a, 'hir> {
|
||||||
}
|
}
|
||||||
if let Some(asm_arch) = asm_arch {
|
if let Some(asm_arch) = asm_arch {
|
||||||
// Inline assembly is currently only stable for these architectures.
|
// Inline assembly is currently only stable for these architectures.
|
||||||
|
// (See also compiletest's `has_asm_support`.)
|
||||||
let is_stable = matches!(
|
let is_stable = matches!(
|
||||||
asm_arch,
|
asm_arch,
|
||||||
asm::InlineAsmArch::X86
|
asm::InlineAsmArch::X86
|
||||||
|
|
|
@ -481,9 +481,17 @@ impl Config {
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn has_asm_support(&self) -> bool {
|
pub fn has_asm_support(&self) -> bool {
|
||||||
|
// This should match the stable list in `LoweringContext::lower_inline_asm`.
|
||||||
static ASM_SUPPORTED_ARCHS: &[&str] = &[
|
static ASM_SUPPORTED_ARCHS: &[&str] = &[
|
||||||
"x86", "x86_64", "arm", "aarch64", "riscv32",
|
"x86",
|
||||||
|
"x86_64",
|
||||||
|
"arm",
|
||||||
|
"aarch64",
|
||||||
|
"arm64ec",
|
||||||
|
"riscv32",
|
||||||
"riscv64",
|
"riscv64",
|
||||||
|
"loongarch64",
|
||||||
|
"s390x",
|
||||||
// These targets require an additional asm_experimental_arch feature.
|
// These targets require an additional asm_experimental_arch feature.
|
||||||
// "nvptx64", "hexagon", "mips", "mips64", "spirv", "wasm32",
|
// "nvptx64", "hexagon", "mips", "mips64", "spirv", "wasm32",
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue