mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 11:49:23 +02:00
- x86 align does not use a register anymore, code removed
git-svn-id: trunk@40157 -
This commit is contained in:
parent
011968e74b
commit
cdce68451a
@ -397,9 +397,6 @@ interface
|
||||
|
||||
{ alignment for operator }
|
||||
tai_align = class(tai_align_abstract)
|
||||
reg : tregister;
|
||||
constructor create(b:byte);override;
|
||||
constructor create_op(b: byte; _op: byte);override;
|
||||
function calculatefillbuf(var buf : tfillbuffer;executable : boolean):pchar;override;
|
||||
end;
|
||||
|
||||
@ -743,20 +740,6 @@ implementation
|
||||
TAI_ALIGN
|
||||
****************************************************************************}
|
||||
|
||||
constructor tai_align.create(b: byte);
|
||||
begin
|
||||
inherited create(b);
|
||||
reg:=NR_ECX;
|
||||
end;
|
||||
|
||||
|
||||
constructor tai_align.create_op(b: byte; _op: byte);
|
||||
begin
|
||||
inherited create_op(b,_op);
|
||||
reg:=NR_NO;
|
||||
end;
|
||||
|
||||
|
||||
function tai_align.calculatefillbuf(var buf : tfillbuffer;executable : boolean):pchar;
|
||||
const
|
||||
{ Updated according to
|
||||
|
Loading…
Reference in New Issue
Block a user