Fix compile time warning (in the ARM simulator) about a print statement with insufficient arguments.

PR 22663
	* maverick.c (DSPCDP4): Add missing parameter to debug print
	statement.
This commit is contained in:
Nick Clifton 2018-01-02 17:15:16 +00:00
parent 806ab1c045
commit 43724d16be
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2018-01-02 Nick Clifton <nickc@redhat.com>
PR 22663
* maverick.c (DSPCDP4): Add missing parameter to debug print
statement.
2017-09-21 Yao Qi <yao.qi@linaro.org>
* wrapper.c (print_insn): Use disassembler instead of

View File

@ -880,7 +880,7 @@ DSPCDP4 (ARMul_State * state,
mv_setRegDouble (DEST_REG,
-mv_getRegDouble (SRC1_REG));
printfdbg ("cfnegd mvd%d = -mvd%d = %g\n",
DEST_REG,
DEST_REG, DEST_REG,
mv_getRegDouble (DEST_REG));
break;