summaryrefslogtreecommitdiff
path: root/compiler/globtype.pas
diff options
context:
space:
mode:
authorjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-06-30 16:24:44 +0000
committerjonas <jonas@3ad0048d-3df7-0310-abae-a5850022a9f2>2019-06-30 16:24:44 +0000
commit2ecde913b595608bf89c477781a2f736a461ada3 (patch)
tree325f11ae4801e49c696af0809e4fd26cdd015390 /compiler/globtype.pas
parent07a2d18d9a3326ef4bd3ef8062ff3f9bd22edc7e (diff)
downloadfpc-2ecde913b595608bf89c477781a2f736a461ada3.tar.gz
* record in ppu flag whether or not symbols are ansistrings, and use that
flag in ppudump rather than hardcoding targets (it's also the case for LLVM) git-svn-id: https://svn.freepascal.org/svn/fpc/trunk@42312 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/globtype.pas')
-rw-r--r--compiler/globtype.pas3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/globtype.pas b/compiler/globtype.pas
index 612771925b..d68488dff2 100644
--- a/compiler/globtype.pas
+++ b/compiler/globtype.pas
@@ -377,7 +377,8 @@ interface
mf_i8086_ss_equals_ds, { this unit uses an i8086 memory model with SS=DS (i.e. tiny, small or medium) }
mf_package_deny, { this unit must not be part of a package }
mf_package_weak, { this unit may be completely contained in a package }
- mf_llvm { compiled for LLVM code generator, not compatible with regular compiler because of different nodes in inline functions }
+ mf_llvm, { compiled for LLVM code generator, not compatible with regular compiler because of different nodes in inline functions }
+ mf_symansistr { symbols are ansistrings (for ppudump) }
);
tmoduleflags = set of tmoduleflag;