diff options
author | 2010-11-11 17:34:53 +0000 | |
---|---|---|
committer | 2010-11-11 17:34:53 +0000 | |
commit | f15e6185235275178236c826697551295364ab5a (patch) | |
tree | cd0b1527da41f9f9f97d0a171250f2162961c656 | |
parent | Missed that part in previous. (diff) | |
download | wireguard-openbsd-f15e6185235275178236c826697551295364ab5a.tar.xz wireguard-openbsd-f15e6185235275178236c826697551295364ab5a.zip |
Correctly disassemble ssnop.
-rw-r--r-- | sys/arch/mips64/mips64/db_disasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mips64/mips64/db_disasm.c b/sys/arch/mips64/mips64/db_disasm.c index bfcec914f61..1d45b6873ac 100644 --- a/sys/arch/mips64/mips64/db_disasm.c +++ b/sys/arch/mips64/mips64/db_disasm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_disasm.c,v 1.13 2010/09/20 23:37:08 miod Exp $ */ +/* $OpenBSD: db_disasm.c,v 1.14 2010/11/11 17:34:53 miod Exp $ */ /* * Copyright (c) 2010 Miodrag Vallat. @@ -51,7 +51,7 @@ * SUCH DAMAGE. * * from: @(#)kadb.c 8.1 (Berkeley) 6/10/93 - * $Id: db_disasm.c,v 1.13 2010/09/20 23:37:08 miod Exp $ + * $Id: db_disasm.c,v 1.14 2010/11/11 17:34:53 miod Exp $ */ #ifdef _KERNEL @@ -589,7 +589,7 @@ dbmd_print_insn(uint32_t ins, db_addr_t mdbdot, int (*pr)(const char *, ...)) if (i.word == 0) { (*pr)("nop"); break; - } else if (i.word == 1 << 5) { + } else if (i.word == 1 << 6) { (*pr)("ssnop"); break; } |