From 764d9740eee1fa13aa5f06ab6311e5682be8c832 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sat, 2 Nov 2013 03:42:46 -0700 Subject: [PATCH] Fix exporting of ARMDecodeThumb --- src/arm/decoder-thumb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arm/decoder-thumb.c b/src/arm/decoder-thumb.c index bd662afc4..6de485efe 100644 --- a/src/arm/decoder-thumb.c +++ b/src/arm/decoder-thumb.c @@ -311,7 +311,7 @@ static const ThumbDecoder _thumbDecoderTable[0x400] = { DECLARE_THUMB_EMITTER_BLOCK(_ThumbDecode) }; -void _decodeThumb(uint16_t opcode, struct ThumbInstructionInfo* info) { +void ARMDecodeThumb(uint16_t opcode, struct ThumbInstructionInfo* info) { info->opcode = opcode; info->branches = 0; info->traps = 0; @@ -371,7 +371,7 @@ const char* thumbMnemonicStrings[] = { int ARMDisassembleThumb(uint16_t opcode, uint32_t pc, char* buffer, int blen) { struct ThumbInstructionInfo info; - _decodeThumb(opcode, &info); + ARMDecodeThumb(opcode, &info); const char* mnemonic = thumbMnemonicStrings[info.mnemonic]; int written; int total = 0;