mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:24:24 +02:00
* MIPS: don't generate FPU code for abs(real), sqr(real) and sqrt(real) in case
FPU emulation is enabled
This commit is contained in:
parent
44c8193cfa
commit
bf7bf44727
@ -46,7 +46,7 @@ implementation
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
systems,
|
systems,
|
||||||
globtype,
|
globtype,globals,
|
||||||
cutils, verbose,
|
cutils, verbose,
|
||||||
symconst, symdef,
|
symconst, symdef,
|
||||||
aasmtai, aasmcpu, aasmdata,
|
aasmtai, aasmcpu, aasmdata,
|
||||||
@ -74,22 +74,37 @@ end;
|
|||||||
|
|
||||||
function tMIPSELinlinenode.first_abs_real: tnode;
|
function tMIPSELinlinenode.first_abs_real: tnode;
|
||||||
begin
|
begin
|
||||||
expectloc := LOC_FPUREGISTER;
|
if not (cs_fp_emulation in current_settings.moduleswitches) then
|
||||||
first_abs_real := nil;
|
begin
|
||||||
|
expectloc := LOC_FPUREGISTER;
|
||||||
|
first_abs_real := nil;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
result:=inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function tMIPSELinlinenode.first_sqr_real: tnode;
|
function tMIPSELinlinenode.first_sqr_real: tnode;
|
||||||
begin
|
begin
|
||||||
expectloc := LOC_FPUREGISTER;
|
if not (cs_fp_emulation in current_settings.moduleswitches) then
|
||||||
first_sqr_real := nil;
|
begin
|
||||||
|
expectloc := LOC_FPUREGISTER;
|
||||||
|
first_sqr_real := nil;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
result:=inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
function tMIPSELinlinenode.first_sqrt_real: tnode;
|
function tMIPSELinlinenode.first_sqrt_real: tnode;
|
||||||
begin
|
begin
|
||||||
expectloc := LOC_FPUREGISTER;
|
if not (cs_fp_emulation in current_settings.moduleswitches) then
|
||||||
first_sqrt_real := nil;
|
begin
|
||||||
|
expectloc := LOC_FPUREGISTER;
|
||||||
|
first_sqrt_real := nil;
|
||||||
|
end
|
||||||
|
else
|
||||||
|
result:=inherited;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user