diff options
Diffstat (limited to 'plugins/pychrysalide/arch')
-rw-r--r-- | plugins/pychrysalide/arch/constants.c | 1 |
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); |