|
@@ -75,7 +75,11 @@ unit ag386int;
|
|
c : comp;
|
|
c : comp;
|
|
dd : pdouble;
|
|
dd : pdouble;
|
|
begin
|
|
begin
|
|
|
|
+ {$ifdef TP}
|
|
|
|
+ c:=d;
|
|
|
|
+ {$else}
|
|
c:=comp(d);
|
|
c:=comp(d);
|
|
|
|
+ {$endif}
|
|
dd:=pdouble(@c); { this makes a bitwise copy of c into a double }
|
|
dd:=pdouble(@c); { this makes a bitwise copy of c into a double }
|
|
comp2str:=double2str(dd^);
|
|
comp2str:=double2str(dd^);
|
|
end;
|
|
end;
|
|
@@ -554,7 +558,10 @@ ait_stab_function_name : ;
|
|
end.
|
|
end.
|
|
{
|
|
{
|
|
$Log$
|
|
$Log$
|
|
- Revision 1.10 1998-05-25 17:11:36 pierre
|
|
|
|
|
|
+ Revision 1.11 1998-06-05 17:46:02 peter
|
|
|
|
+ * tp doesn't like comp() typecast
|
|
|
|
+
|
|
|
|
+ Revision 1.10 1998/05/25 17:11:36 pierre
|
|
* firstpasscount bug fixed
|
|
* firstpasscount bug fixed
|
|
now all is already set correctly the first time
|
|
now all is already set correctly the first time
|
|
under EXTDEBUG try -gp to skip all other firstpasses
|
|
under EXTDEBUG try -gp to skip all other firstpasses
|