Skip to content

Commit 17fb125

Browse files
committed
Auto merge of #75939 - Amanieu:fix_asm2, r=nagisa
Fix a typo in #75781
2 parents 360a372 + 9ae5e95 commit 17fb125

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

src/librustc_codegen_llvm/asm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ fn reg_to_llvm(reg: InlineAsmRegOrRegClass, layout: Option<&TyAndLayout<'tcx>>)
485485
format!("{{{}{}}}", class, idx)
486486
} else if reg == InlineAsmReg::AArch64(AArch64InlineAsmReg::x30) {
487487
// LLVM doesn't recognize x30
488-
"lr".to_string()
488+
"{lr}".to_string()
489489
} else {
490490
format!("{{{}}}", reg.name())
491491
}

src/test/assembly/asm/aarch64-types.rs

+11-5
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,17 @@ pub unsafe fn sym_static() {
9696
asm!("adr x0, {}", sym extern_static);
9797
}
9898

99+
// Regression test for #75761
100+
// CHECK-LABEL: issue_75761:
101+
// CHECK: str {{.*}}x30
102+
// CHECK: //APP
103+
// CHECK: //NO_APP
104+
// CHECK: ldr {{.*}}x30
105+
#[no_mangle]
106+
pub unsafe fn issue_75761() {
107+
asm!("", out("v0") _, out("x30") _);
108+
}
109+
99110
macro_rules! check {
100111
($func:ident $ty:ident $class:ident $mov:literal $modifier:literal) => {
101112
#[no_mangle]
@@ -553,8 +564,3 @@ check_reg!(v0_f32x4 f32x4 "s0" "fmov");
553564
// CHECK: fmov s0, s0
554565
// CHECK: //NO_APP
555566
check_reg!(v0_f64x2 f64x2 "s0" "fmov");
556-
557-
// Regression test for #75761
558-
pub unsafe fn issue_75761() {
559-
asm!("", out("v0") _, out("x30") _);
560-
}

0 commit comments

Comments
 (0)