From 4ed897041f980939dd873cae9734f35fe5f4bcff Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Sat, 2 Aug 2008 12:48:30 +0000 Subject: [PATCH] Add yet another branch instruction. Obtained from: NetBSD MFC after: 3 days --- sys/arm/include/db_machdep.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/arm/include/db_machdep.h b/sys/arm/include/db_machdep.h index 8ccb0a05176..60cd872da0f 100644 --- a/sys/arm/include/db_machdep.h +++ b/sys/arm/include/db_machdep.h @@ -73,7 +73,8 @@ typedef int db_expr_t; 0000000f register */ #define inst_branch(ins) (((ins) & 0x0f000000) == 0x0a000000 || \ - ((ins) & 0x0fdffff0) == 0x079ff100) + ((ins) & 0x0fdffff0) == 0x079ff100 || \ + ((ins) & 0x0ff0f000) == 0x0590f000) #define inst_load(ins) (0) #define inst_store(ins) (0)