Module Name: src
Committed By: simonb
Date: Mon Apr 5 07:27:11 UTC 2021
Modified Files:
src/sys/arch/mips/mips: db_disasm.c
Log Message:
Fix cut'n'paste typo - OP_CVM_DMUL is dmul, not baddu.
To generate a diff of this commit:
cvs rdiff -u -r1.38 -r1.39 src/sys/arch/mips/mips/db_disasm.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/mips/mips/db_disasm.c
diff -u src/sys/arch/mips/mips/db_disasm.c:1.38 src/sys/arch/mips/mips/db_disasm.c:1.39
--- src/sys/arch/mips/mips/db_disasm.c:1.38 Mon Apr 5 07:00:06 2021
+++ src/sys/arch/mips/mips/db_disasm.c Mon Apr 5 07:27:11 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: db_disasm.c,v 1.38 2021/04/05 07:00:06 simonb Exp $ */
+/* $NetBSD: db_disasm.c,v 1.39 2021/04/05 07:27:11 simonb Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -35,7 +35,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: db_disasm.c,v 1.38 2021/04/05 07:00:06 simonb Exp $");
+__KERNEL_RCSID(0, "$NetBSD: db_disasm.c,v 1.39 2021/04/05 07:27:11 simonb Exp $");
#include <sys/param.h>
#include <sys/cpu.h>
@@ -85,7 +85,7 @@ static const char * const spec2_name[64]
[OP_MADDU] = "maddu",
[OP_MUL] = "mul",
#ifdef __OCTEON__
- [OP_CVM_DMUL] = "baddu",
+ [OP_CVM_DMUL] = "dmul",
#endif
[OP_MSUB] = "msub",
[OP_MSUBU] = "msubu",