compiler: Handle arm_aapcs16_vfp alongside arm_aapcs_vfp in some places.

This commit is contained in:
Alex Rønne Petersen
2024-10-28 20:24:41 +01:00
parent be8a527eb2
commit 3a5142af8d
4 changed files with 20 additions and 9 deletions

View File

@@ -3433,8 +3433,9 @@ fn updateType(
.arm_apcs => .nocall,
.arm_aapcs => .LLVM_AAPCS,
.arm_aapcs_vfp => .LLVM_AAPCS_VFP,
.arm_aapcs16_vfp => .nocall,
.arm_aapcs_vfp,
.arm_aapcs16_vfp,
=> .LLVM_AAPCS_VFP,
.riscv64_lp64_v,
.riscv32_ilp32_v,