target/arm: Fix typos in trans function prototypes
commit83655223ac6143a563e981906ce13fd6f2cfbefd
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 14 Jun 2019 10:44:56 +0000 (14 11:44 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 17 Jun 2019 14:15:06 +0000 (17 15:15 +0100)
tree42aa89ef76cbc4a097ac6742347207a88684bc5c
parentd9eea52c67c04c58ecceba6ffe5a93d1d02051fa
target/arm: Fix typos in trans function prototypes

In several places cut and paste errors meant we were using the wrong
type for the 'arg' struct in trans_ functions called by the
decodetree decoder, because we were using the _sp version of the
struct in the _dp function.  These were harmless, because the two
structs were identical and so decodetree made them typedefs of the
same underlying structure (and we'd have had a compile error if they
were not harmless), but we should clean them up anyway.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190614104457.24703-2-peter.maydell@linaro.org
target/arm/translate-vfp.inc.c