Skip to content

Commit 6b9f3c5

Browse files
committed
Format ASM_SUPPORTED_ARCHS
1 parent 27b3f3d commit 6b9f3c5

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/tools/compiletest/src/common.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,15 @@ impl Config {
483483
pub fn has_asm_support(&self) -> bool {
484484
// This should match the stable list in `LoweringContext::lower_inline_asm`.
485485
static ASM_SUPPORTED_ARCHS: &[&str] = &[
486-
"x86", "x86_64", "arm", "aarch64", "arm64ec", "riscv32",
487-
"riscv64", "loongarch64", "s390x"
486+
"x86",
487+
"x86_64",
488+
"arm",
489+
"aarch64",
490+
"arm64ec",
491+
"riscv32",
492+
"riscv64",
493+
"loongarch64",
494+
"s390x",
488495
// These targets require an additional asm_experimental_arch feature.
489496
// "nvptx64", "hexagon", "mips", "mips64", "spirv", "wasm32",
490497
];

0 commit comments

Comments
 (0)