From 67a8409186ac3064ea484a31c9c607a6883248d1 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 9 Nov 1999 22:54:45 +0000 Subject: [PATCH] * fixed wrong asm with inc(qword), but not it's not correctly supported --- compiler/cg386inl.pas | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/compiler/cg386inl.pas b/compiler/cg386inl.pas index 3267c2a2d8..7f1d6ed48c 100644 --- a/compiler/cg386inl.pas +++ b/compiler/cg386inl.pas @@ -1062,6 +1062,7 @@ implementation else asmop:=A_ADD; case p^.resulttype^.size of + 8 : opsize:=S_L; 4 : opsize:=S_L; 2 : opsize:=S_W; 1 : opsize:=S_B; @@ -1115,6 +1116,7 @@ implementation 1 : opsize:=S_B; 2 : opsize:=S_W; 4 : opsize:=S_L; + 8 : opsize:=S_L; end; end; pointerdef : begin @@ -1426,7 +1428,10 @@ implementation end. { $Log$ - Revision 1.77 1999-11-06 14:34:17 peter + Revision 1.78 1999-11-09 22:54:45 peter + * fixed wrong asm with inc(qword), but not it's not correctly supported + + Revision 1.77 1999/11/06 14:34:17 peter * truncated log to 20 revs Revision 1.76 1999/10/29 15:28:51 peter