summaryrefslogtreecommitdiff
path: root/src/format/symbol.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-08-02 22:25:15 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-08-02 22:25:15 (GMT)
commit8c84aa2e41305fd388b7dac49f29ae17ee0554fb (patch)
tree52830a7d896e2d9272e7c71677c72ce9d62cf26c /src/format/symbol.h
parent30fc2ba22b469e38bc40e47f517988e418c178f3 (diff)
Introduced symbols dedicated to strings.
Diffstat (limited to 'src/format/symbol.h')
-rw-r--r--src/format/symbol.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/format/symbol.h b/src/format/symbol.h
index 13747d4..577a6a0 100644
--- a/src/format/symbol.h
+++ b/src/format/symbol.h
@@ -43,8 +43,8 @@ typedef enum _SymbolType
STP_CODE_LABEL, /* Renvoi au sein de code */
STP_OBJECT, /* Objet quelconque */
STP_ENTRY_POINT, /* Morceau de code en entrée */
- STP_STRING, /* Chaîne de caractères */
- STP_RO_STRING, /* Chaîne de caractères */
+ STP_RO_STRING, /* Chaîne d'origine */
+ STP_DYN_STRING, /* Chaîne créée ex-nihilo */
STP_COUNT
@@ -57,6 +57,7 @@ typedef enum _SymbolStatus
SSS_INTERNAL, /* Visibilité nulle */
SSS_EXPORTED, /* Disponibilité extérieure */
SSS_IMPORTED, /* Besoin interne */
+ SSS_DYNAMIC, /* Création durant l'analyse */
SSS_COUNT