mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
* RiscV: emit an error if fpu_fd is used on a cpu without f and d extensions
This commit is contained in:
parent
0c749505ef
commit
2da48488d7
@ -5515,6 +5515,10 @@ begin
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
{ check if the fpu type requires the F and D extension }
|
||||
if (init_settings.fputype in [fpu_fd]) and not((cpu_capabilities[init_settings.cputype]*[CPURV_HAS_F,CPURV_HAS_D])=[CPURV_HAS_F,CPURV_HAS_D]) then
|
||||
Message2(option_unsupported_fpu,fputypestr[init_settings.fputype],cputypestr[init_settings.cputype]);
|
||||
{$endif defined(riscv32) or defined(riscv64)}
|
||||
|
||||
{$ifdef jvm}
|
||||
|
Loading…
Reference in New Issue
Block a user