Skip to content

Commit ab08821

Browse files
authored
Rollup merge of rust-lang#66084 - petrochenkov:x86arm, r=alexcrichton
Do not require extra LLVM backends for `x.py test` to pass For long time our testing passed with a partially built LLVM ``` [llvm] targets = "X86;ARM" ``` , a [recent PR](rust-lang#65809) changed that.
2 parents 9bfb5cc + d22a659 commit ab08821

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/test/codegen/abi-efiapi.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
// Checks if the correct annotation for the efiapi ABI is passed to llvm.
22

3-
// revisions:x86_64 i686 aarch64 arm riscv
3+
// revisions:x86_64 i686 arm
44

55
// min-llvm-version 9.0
66

77
//[x86_64] compile-flags: --target x86_64-unknown-uefi
88
//[i686] compile-flags: --target i686-unknown-linux-musl
9-
//[aarch64] compile-flags: --target aarch64-unknown-none
109
//[arm] compile-flags: --target armv7r-none-eabi
11-
//[riscv] compile-flags: --target riscv64gc-unknown-none-elf
1210
// compile-flags: -C no-prepopulate-passes
1311

1412
#![crate_type = "lib"]
@@ -24,8 +22,6 @@ trait Copy { }
2422

2523
//x86_64: define win64cc void @has_efiapi
2624
//i686: define void @has_efiapi
27-
//aarch64: define void @has_efiapi
2825
//arm: define void @has_efiapi
29-
//riscv: define void @has_efiapi
3026
#[no_mangle]
3127
pub extern "efiapi" fn has_efiapi() {}

0 commit comments

Comments
 (0)