瀏覽代碼

* indentation fixed

florian 1 年之前
父節點
當前提交
08bf5f7201
共有 1 個文件被更改,包括 10 次插入10 次删除
  1. 10 10
      rtl/inc/int64.inc

+ 10 - 10
rtl/inc/int64.inc

@@ -208,11 +208,11 @@
 
 
       begin
       begin
          { Use the usually faster 32-bit division if possible }
          { Use the usually faster 32-bit division if possible }
-	 if (hi(z) = 0) and (hi(n) = 0) then
-	 begin
-	   fpc_div_qword := Dword(z) div Dword(n);
-	   exit;
-	 end;
+	       if (hi(z) = 0) and (hi(n) = 0) then
+	         begin
+	           fpc_div_qword := Dword(z) div Dword(n);
+             exit;
+	         end;
          fpc_div_qword:=0;
          fpc_div_qword:=0;
          if n=0 then
          if n=0 then
            HandleErrorAddrFrameInd(200,get_pc_addr,get_frame);
            HandleErrorAddrFrameInd(200,get_pc_addr,get_frame);
@@ -249,11 +249,11 @@
 
 
       begin
       begin
          { Use the usually faster 32-bit mod if possible }
          { Use the usually faster 32-bit mod if possible }
-	 if (hi(z) = 0) and (hi(n) = 0) then
-	 begin
-	   fpc_mod_qword := Dword(z) mod Dword(n);
-	   exit;
-	 end;
+         if (hi(z) = 0) and (hi(n) = 0) then
+           begin
+             fpc_mod_qword := Dword(z) mod Dword(n);
+             exit;
+           end;
          fpc_mod_qword:=0;
          fpc_mod_qword:=0;
          if n=0 then
          if n=0 then
            HandleErrorAddrFrameInd(200,get_pc_addr,get_frame);
            HandleErrorAddrFrameInd(200,get_pc_addr,get_frame);