diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-11-05 19:45:08 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-11-05 19:45:08 (GMT) |
commit | c35d5d4ce62b812ec0aa4a5ebbacb84cd0901d53 (patch) | |
tree | ca0262ce4f0a24bdfbc1b9a4ffa1bbb202d47820 /src/arch/jvm | |
parent | f5df6496fa50927d3d274c939a888afde652b7ad (diff) |
Removed the old interface for rendering lines.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@278 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/jvm')
-rw-r--r-- | src/arch/jvm/operand.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/src/arch/jvm/operand.c b/src/arch/jvm/operand.c index b0f2fa0..11458a9 100644 --- a/src/arch/jvm/operand.c +++ b/src/arch/jvm/operand.c @@ -87,9 +87,6 @@ static void g_jvm_ref_operand_class_init(GJvmRefOperandClass *); /* Initialise une instance d'opérande de référence pour la JVM. */ static void g_jvm_ref_operand_init(GJvmRefOperand *); -/* Traduit un opérande en version humainement lisible. */ -static char *g_jvm_ref_operand_get_text(const GJvmRefOperand *, const exe_format *, AsmSyntax); - @@ -188,11 +185,6 @@ static void g_jvm_ref_operand_class_init(GJvmRefOperandClass *klass) static void g_jvm_ref_operand_init(GJvmRefOperand *operand) { - GArchOperand *parent; /* Instance parente */ - - parent = G_ARCH_OPERAND(operand); - - parent->get_text = (get_operand_text_fc)g_jvm_ref_operand_get_text; } @@ -236,6 +228,7 @@ GArchOperand *g_jvm_ref_operand_new(const bin_t *data, off_t *pos, off_t len, Jv } +#if 0 /****************************************************************************** * * * Paramètres : operand = opérande à traiter. * @@ -273,7 +266,7 @@ static char *g_jvm_ref_operand_get_text(const GJvmRefOperand *operand, const exe return result; } - +#endif |