summaryrefslogtreecommitdiff
path: root/compiler/machoutils.pas
diff options
context:
space:
mode:
authoryury <yury@3ad0048d-3df7-0310-abae-a5850022a9f2>2018-11-05 14:35:23 +0000
committeryury <yury@3ad0048d-3df7-0310-abae-a5850022a9f2>2018-11-05 14:35:23 +0000
commit78362a27284296eeb51b2f6ff3139e183b60ab0c (patch)
tree46ac3bd52372d5f09dee324b60972f28157d507b /compiler/machoutils.pas
parentb2124a5fac1417df3f0cdf66b57701ce4410b7c5 (diff)
downloadfpc-78362a27284296eeb51b2f6ff3139e183b60ab0c.tar.gz
* Removed inline for functions which access private variables and can't be inlined from outside.
git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@40225 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/machoutils.pas')
-rw-r--r--compiler/machoutils.pas8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/machoutils.pas b/compiler/machoutils.pas
index b9060b3127..ee4983c820 100644
--- a/compiler/machoutils.pas
+++ b/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;