diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-04-20 12:13:33 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-04-20 12:13:39 (GMT) |
commit | 7e945d90b17b58832f561cce8ce778abcd4a360f (patch) | |
tree | d8e121d1d056eb7f666d6d3a38c4b3b3d2be6332 /src | |
parent | 14d17285cdfae2fe6bd7df0e873ef11ef876e12c (diff) |
Counted available references between instructions.
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/instruction.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/arch/instruction.h b/src/arch/instruction.h index 217e38b..cf9189b 100644 --- a/src/arch/instruction.h +++ b/src/arch/instruction.h @@ -206,7 +206,9 @@ typedef enum _InstructionLinkType ILT_LOOP, /* Retour en arrière (boucle) */ ILT_CALL, /* Appel d'une fonction */ ILT_CATCH_EXCEPTION, /* Gestion d'une exception */ - ILT_REF /* Simple référence croisée */ + ILT_REF, /* Simple référence croisée */ + + ILT_COUNT } InstructionLinkType; |