fix detection of PLD instructions

Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
__archive__
Lennert Buytenhek 2009-10-13 22:48:18 +02:00 committed by David Brownell
parent ed1e45b388
commit 9b9bc78ef1
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ static int evaluate_pld(uint32_t opcode,
uint32_t address, arm_instruction_t *instruction)
{
/* PLD */
if ((opcode & 0x0d70f0000) == 0x0550f000)
if ((opcode & 0x0d70f000) == 0x0550f000)
{
instruction->type = ARM_PLD;