summaryrefslogtreecommitdiff
path: root/src/arch/instruction.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2014-08-20 20:48:19 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2014-08-20 20:48:19 (GMT)
commitb1738d682ea2bd7260438c543f30442cbc73a42c (patch)
tree84cb35f8fd1e565517e4e4a2b3993f2acb3eeffe /src/arch/instruction.c
parent2425953ed7330c8f92ec7d04a5f248db1ed98a9d (diff)
Rewritten some parts of code to increase the binary processing speed.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@391 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/instruction.c')
-rw-r--r--src/arch/instruction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/instruction.c b/src/arch/instruction.c
index 95910ba..e1ee023 100644
--- a/src/arch/instruction.c
+++ b/src/arch/instruction.c
@@ -673,7 +673,7 @@ size_t g_arch_instruction_compute_group_index(GArchInstruction **iter, GArchInst
const char *g_arch_instruction_get_keyword(const GArchInstruction *instr, AsmSyntax syntax)
{
- G_ARCH_INSTRUCTION_GET_CLASS(instr)->get_key(instr, syntax);
+ return G_ARCH_INSTRUCTION_GET_CLASS(instr)->get_key(instr, syntax);
}