Ver Fonte

* Removed inline for functions which access private variables and can't be inlined from outside.

git-svn-id: trunk@40225 -
yury há 6 anos atrás
pai
commit
a7642b70c1
1 ficheiros alterados com 4 adições e 4 exclusões
  1. 4 4
      compiler/machoutils.pas

+ 4 - 4
compiler/machoutils.pas

@@ -255,10 +255,10 @@ uses
 
     function AllocMachoWriter(cputarget: cpu_type_t; ARawWriter: TRawWriter; AllowFreeWriter: Boolean): TMachoWriter;
 
-    function sizeMachHeader(cputarget: cpu_type_t): integer; inline;
-    function sizeSegment(cputarget: cpu_type_t): integer; inline;
-    function sizeSection(cputarget: cpu_type_t): integer; inline;
-    function sizeNList(cputarget: cpu_type_t): integer; inline;
+    function sizeMachHeader(cputarget: cpu_type_t): integer;
+    function sizeSegment(cputarget: cpu_type_t): integer;
+    function sizeSection(cputarget: cpu_type_t): integer;
+    function sizeNList(cputarget: cpu_type_t): integer;
 
     function AlignAddr(cputarget: cpu_type_t; addr: qword): qword;