Prechádzať zdrojové kódy

* fixed comments from last commit (apparently there's still a 255 char limit :( )

Jonas Maebe 27 rokov pred
rodič
commit
2b9d08c912
2 zmenil súbory, kde vykonal 22 pridanie a 9 odobranie
  1. 11 4
      compiler/csopt386.pas
  2. 11 5
      compiler/daopt386.pas

+ 11 - 4
compiler/csopt386.pas

@@ -566,12 +566,19 @@ End.
 
 
 {
 {
  $Log$
  $Log$
- Revision 1.13  1998-11-09 19:33:39  jonas
-   * changed specific bugfix (which was actually wrong implemented, but did the
-     right thing in most cases nevertheless) to general bugfix
+ Revision 1.14  1998-11-09 19:40:48  jonas
+   * fixed comments from last commit (apparently there's still a 255 char limit :( )
+
+ Revision 1.13  1998/11/09 19:33:39  jonas
+   * changed specific bugfix (which was actually wrong implemented, but
+     did the right thing in most cases nevertheless) to general bugfix
    * fixed bug that caused
    * fixed bug that caused
      mov (ebp), edx                                    mov (ebp), edx
      mov (ebp), edx                                    mov (ebp), edx
-     mov (edx), edx
+     mov (edx), edx                                    mov (edx), edx
+     ...                   being changed to            ...
+     mov (ebp), edx                                    mov edx, eax
+     mov (eax), eax
+     but this disabled another small correct optimization...
 
 
  Revision 1.12  1998/10/20 09:32:54  peter
  Revision 1.12  1998/10/20 09:32:54  peter
    * removed some unused vars
    * removed some unused vars

+ 11 - 5
compiler/daopt386.pas

@@ -2007,13 +2007,19 @@ End.
 
 
 {
 {
  $Log$
  $Log$
- Revision 1.22  1998-11-09 19:33:40  jonas
-   * changed specific bugfix (which was actually wrong implemented, but did the
-     right thing in most cases nevertheless) to general bugfix
+ Revision 1.23  1998-11-09 19:40:46  jonas
+   * fixed comments from last commit (apparently there's still a 255 char limit :( )
+
+ Revision 1.22  1998/11/09 19:33:40  jonas
+   * changed specific bugfix (which was actually wrong implemented, but
+     did the right thing in most cases nevertheless) to general bugfix
    * fixed bug that caused
    * fixed bug that caused
      mov (ebp), edx                                    mov (ebp), edx
      mov (ebp), edx                                    mov (ebp), edx
-     mov (edx), edx
-
+     mov (edx), edx                                    mov (edx), edx
+     ...                   being changed to            ...
+     mov (ebp), edx                                    mov edx, eax
+     mov (eax), eax
+     but this disabled another small correct optimization...
  Revision 1.21  1998/11/02 23:17:49  jonas
  Revision 1.21  1998/11/02 23:17:49  jonas
    * fixed bug shown in sortbug program from fpc-devel list
    * fixed bug shown in sortbug program from fpc-devel list