mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 07:26:24 +02:00
Also fix first_abs_real like in rev 39988
git-svn-id: trunk@39997 -
This commit is contained in:
parent
2cbb9895be
commit
d512d8cae1
@ -4093,12 +4093,15 @@ implementation
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
function tinlinenode.first_abs_real : tnode;
|
function tinlinenode.first_abs_real : tnode;
|
||||||
|
var
|
||||||
|
callnode : tcallnode;
|
||||||
begin
|
begin
|
||||||
{ create the call to the helper }
|
{ create the call to the helper }
|
||||||
{ on entry left node contains the parameter }
|
{ on entry left node contains the parameter }
|
||||||
result := ctypeconvnode.create(ccallnode.createintern('fpc_abs_real',
|
callnode:=ccallnode.createintern('fpc_abs_real',
|
||||||
ccallparanode.create(left,nil)),resultdef);
|
ccallparanode.create(left,nil));
|
||||||
include(tcallnode(result).callnodeflags,cnf_check_fpu_exceptions);
|
result := ctypeconvnode.create(callnode,resultdef);
|
||||||
|
include(callnode.callnodeflags,cnf_check_fpu_exceptions);
|
||||||
left := nil;
|
left := nil;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user