summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/arch/operands/module.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-06-07 20:42:22 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-06-07 20:42:22 (GMT)
commitad1caf61fccd0d74be6ac92c41d83e9b0008ff2b (patch)
tree025d935a91ab84e43eb7a20e6192293ab2e87d55 /plugins/pychrysalide/arch/operands/module.c
parentc87020ce7d1cd0a46f8122839c53ffa3e49fd172 (diff)
Reorganized the operands behaving like proxies.
Diffstat (limited to 'plugins/pychrysalide/arch/operands/module.c')
-rw-r--r--plugins/pychrysalide/arch/operands/module.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/pychrysalide/arch/operands/module.c b/plugins/pychrysalide/arch/operands/module.c
index cbd0bde..15d7835 100644
--- a/plugins/pychrysalide/arch/operands/module.c
+++ b/plugins/pychrysalide/arch/operands/module.c
@@ -28,7 +28,9 @@
#include <assert.h>
+#include "feeder.h"
#include "immediate.h"
+#include "proxy.h"
#include "register.h"
#include "rename.h"
#include "targetable.h"
@@ -97,8 +99,10 @@ bool populate_arch_operands_module(void)
result = true;
+ if (result) result = ensure_python_proxy_feeder_is_registered();
if (result) result = ensure_python_imm_operand_is_registered();
if (result) result = ensure_python_known_imm_operand_is_registered();
+ if (result) result = ensure_python_proxy_operand_is_registered();
if (result) result = ensure_python_register_operand_is_registered();
if (result) result = ensure_python_renamed_operand_is_registered();
if (result) result = ensure_python_renameable_operand_is_registered();