Skip to content

Commit cb9ef09

Browse files
authored
Rollup merge of #75781 - Amanieu:asm-fix, r=nagisa
More inline asm register name fixups for LLVM Fixes #75761 r? @nagisa
2 parents d826229 + 4fe4c3b commit cb9ef09

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/librustc_codegen_llvm/asm.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -479,10 +479,13 @@ fn reg_to_llvm(reg: InlineAsmRegOrRegClass, layout: Option<&TyAndLayout<'tcx>>)
479479
_ => unreachable!(),
480480
}
481481
} else {
482-
// We use i32 as the type for discarded outputs
483-
's'
482+
// We use i64x2 as the type for discarded outputs
483+
'q'
484484
};
485485
format!("{{{}{}}}", class, idx)
486+
} else if reg == InlineAsmReg::AArch64(AArch64InlineAsmReg::x30) {
487+
// LLVM doesn't recognize x30
488+
"lr".to_string()
486489
} else {
487490
format!("{{{}}}", reg.name())
488491
}

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

+5
Original file line numberDiff line numberDiff line change
@@ -553,3 +553,8 @@ check_reg!(v0_f32x4 f32x4 "s0" "fmov");
553553
// CHECK: fmov s0, s0
554554
// CHECK: //NO_APP
555555
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)