sim: mips: fix qh_acc table

The AccAddLQH func was unused, and looking at this table, it looks
like it's due to a typo.
This commit is contained in:
Mike Frysinger
2021-05-01 21:17:12 -04:00
parent 2849d28d96
commit 4df817de57
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
* mdmx.c (qh_acc): Change 2nd AccAddAQH to AccAddLQH.
2021-05-04 Mike Frysinger <vapier@gentoo.org>
* configure: Regenerate.

View File

@ -772,7 +772,7 @@ AccAbsDiffOB(signed24 *a, unsigned8 ts, unsigned8 tt)
/* Dispatch tables for operations that update a CPR. */
static const QH_ACC qh_acc[] = {
AccAddAQH, AccAddAQH, AccMulAQH, AccMulLQH,
AccAddAQH, AccAddLQH, AccMulAQH, AccMulLQH,
SubMulAQH, SubMulLQH, AccSubAQH, AccSubLQH,
NULL
};