summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-02-29 09:40:35 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-02-29 09:40:35 (GMT)
commite26ba6f0429e079785bfc96e0ea55c814537e76f (patch)
tree5b109544e13d838c873f119d742cf35b0f7e0988 /plugins/pychrysalide/arch
parent526985383c4e601775b4f04b273566b8ab930a58 (diff)
Broken ARMv7 basic blocks depending on conditional flags.
Diffstat (limited to 'plugins/pychrysalide/arch')
-rw-r--r--plugins/pychrysalide/arch/constants.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/pychrysalide/arch/constants.c b/plugins/pychrysalide/arch/constants.c
index 5e9ad37..b7dd8a1 100644
--- a/plugins/pychrysalide/arch/constants.c
+++ b/plugins/pychrysalide/arch/constants.c
@@ -55,6 +55,7 @@ bool define_arch_instruction_constants(PyTypeObject *type)
result = add_const_to_group(values, "NONE", AIF_NONE);
if (result) result = add_const_to_group(values, "ROUTINE_START", AIF_ROUTINE_START);
if (result) result = add_const_to_group(values, "RETURN_POINT", AIF_RETURN_POINT);
+ if (result) result = add_const_to_group(values, "COND_RETURN_POINT", AIF_COND_RETURN_POINT);
if (result) result = add_const_to_group(values, "CALL", AIF_CALL);
if (result) result = add_const_to_group(values, "LOW_USER", AIF_LOW_USER);
if (result) result = add_const_to_group(values, "HIGH_USER", AIF_HIGH_USER);