diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2017-03-08 06:32:39 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2017-03-08 06:32:39 (GMT) |
commit | 404c117efa179e61bdae6679b12c1cef1c9c2489 (patch) | |
tree | 107970eb6e96e90e78db1dad92d62653c06b68e5 /src | |
parent | c0b4029475158f16f683e4c46a86b28f7a146a1c (diff) |
Removed the instruction link type meaning there is no link.
Diffstat (limited to 'src')
-rw-r--r-- | src/analysis/disass/links.c | 1 | ||||
-rw-r--r-- | src/arch/instruction.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/analysis/disass/links.c b/src/analysis/disass/links.c index abe26d6..295b4b6 100644 --- a/src/analysis/disass/links.c +++ b/src/analysis/disass/links.c @@ -132,7 +132,6 @@ void establish_natural_link(GArchInstruction *instr, GArchInstruction *prev) for (i = 0; i < count; i++) switch (others[i].type) { - case ILT_NONE: case ILT_EXEC_FLOW: assert(false); break; diff --git a/src/arch/instruction.h b/src/arch/instruction.h index 9299f8c..4f5a042 100644 --- a/src/arch/instruction.h +++ b/src/arch/instruction.h @@ -193,7 +193,6 @@ void _g_arch_instruction_detach_operand(GArchInstruction *, GArchOperand *); /* Typage des instructions rencontrées */ typedef enum _InstructionLinkType { - ILT_NONE, /* Aucune instruction visée */ ILT_EXEC_FLOW, /* Raccord attendu entre blocs */ ILT_JUMP, /* Saut inconditionnel */ ILT_CASE_JUMP, /* Saut suite à aiguillage */ |