瀏覽代碼

* fixed bug in second_int_to_bool I introduced previous time
(secondpass was being called twice!)

Jonas Maebe 22 年之前
父節點
當前提交
7fc5c04a14
共有 1 個文件被更改,包括 7 次插入2 次删除
  1. 7 2
      compiler/powerpc/nppccnv.pas

+ 7 - 2
compiler/powerpc/nppccnv.pas

@@ -287,7 +287,8 @@ implementation
               exit;
            end;
 *)
-         secondpass(left);
+{        Already done in tppctypeconvnode.pass_2! (JM)
+         secondpass(left); }
          if codegenerror then
            exit;
          location_reset(location,LOC_REGISTER,def_cgsize(resulttype.def));
@@ -428,7 +429,11 @@ begin
 end.
 {
   $Log$
-  Revision 1.35  2003-05-11 13:06:44  jonas
+  Revision 1.36  2003-05-11 20:42:08  jonas
+    * fixed bug in second_int_to_bool I introduced previous time
+      (secondpass was being called twice!)
+
+  Revision 1.35  2003/05/11 13:06:44  jonas
     * fixed second_int_to_bool() (but still problem with typecasts used for
       var parameters, not sure about solution)