CVSROOT: /cvs Module name: ports Changes by: [email protected] 2026/08/21 07:27:47
Modified files:
devel/llvm/22 : Makefile
devel/llvm/22/patches:
patch-llvm_lib_Target_Sparc_AsmParser_SparcAsmParser_cpp
Log message:
sync from base: SparcAsmParser: fix off by one and allow %r31 to be used
rust contains a sparc64.s file with
.cfi_register %r15, %r31
This fails with 'src/arch/sparc64.s:59:26: error: invalid register name'
Changing RegNo < 31 to RegNo <= 31 fixes this.
ok kettenis kirill
