arm_disassembler: fix typo 'ARM_UNKNOWN_INSTUCTION' to '.._INSTRUCTION'

Change-Id: I3a3d566fe96fb1497cf8337389e993e0f728a64b
Signed-off-by: Laurent LEMELE <laurent.lemele@st.com>
Signed-off-by: Tarek BOCHKATI <tarek.bouchkati@gmail.com>
Reviewed-on: http://openocd.zylin.com/5657
Tested-by: jenkins
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
This commit is contained in:
Tarek BOCHKATI 2020-05-12 21:00:18 +01:00 committed by Antonio Borneo
parent 763f2549ad
commit ac870d80a9
2 changed files with 2 additions and 2 deletions

View File

@ -2086,7 +2086,7 @@ static int evaluate_b_bl_blx_thumb(uint16_t opcode,
break;
/* BL/BLX prefix */
case 2:
instruction->type = ARM_UNKNOWN_INSTUCTION;
instruction->type = ARM_UNKNOWN_INSTRUCTION;
mnemonic = "prefix";
target_address = offset << 12;
break;

View File

@ -20,7 +20,7 @@
#define OPENOCD_TARGET_ARM_DISASSEMBLER_H
enum arm_instruction_type {
ARM_UNKNOWN_INSTUCTION,
ARM_UNKNOWN_INSTRUCTION,
/* Branch instructions */
ARM_B,