diff options
author | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-08-20 21:35:05 +0000 |
---|---|---|
committer | florian <florian@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2008-08-20 21:35:05 +0000 |
commit | 9b794ba2d7fedaab733e59577af58746050975c8 (patch) | |
tree | b28e6ad185e3b1eda0de7be9057312e55103a045 /compiler/node.pas | |
parent | 40303edd1efb42eb4671e58afd52ced5510e1839 (diff) | |
download | fpc-9b794ba2d7fedaab733e59577af58746050975c8.tar.gz |
* new node flag nf_modify to mark nodes being read and then written by one load node
* dfa takes care of nf_modify to create better life information
o resolves #11846 and #11849
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11615 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/node.pas')
-rw-r--r-- | compiler/node.pas | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/node.pas b/compiler/node.pas index b60e39fe9f..095db93ff7 100644 --- a/compiler/node.pas +++ b/compiler/node.pas @@ -201,7 +201,8 @@ interface { general } nf_pass1_done, - nf_write, { Node is written to } + nf_write, { Node is written to } + nf_modify, { Node is modified } nf_is_funcret, nf_isproperty, nf_processing, |