mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
target/ppc: Move xs{max, min}[cj]dp to use do_helper_XX3
Also, fixes these instructions not being capitalized. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Víctor Colombo <victor.colombo@eldorado.org.br> Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br> Message-Id: <20220225210936.1749575-44-matheus.ferst@eldorado.org.br> Signed-off-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
72d24354ca
commit
5307df8f3a
3 changed files with 12 additions and 34 deletions
|
@ -2565,8 +2565,8 @@ void helper_##name(CPUPPCState *env, \
|
|||
} \
|
||||
} \
|
||||
|
||||
VSX_MAX_MINC(xsmaxcdp, 1);
|
||||
VSX_MAX_MINC(xsmincdp, 0);
|
||||
VSX_MAX_MINC(XSMAXCDP, 1);
|
||||
VSX_MAX_MINC(XSMINCDP, 0);
|
||||
|
||||
#define VSX_MAX_MINJ(name, max) \
|
||||
void helper_##name(CPUPPCState *env, \
|
||||
|
@ -2620,8 +2620,8 @@ void helper_##name(CPUPPCState *env, \
|
|||
} \
|
||||
} \
|
||||
|
||||
VSX_MAX_MINJ(xsmaxjdp, 1);
|
||||
VSX_MAX_MINJ(xsminjdp, 0);
|
||||
VSX_MAX_MINJ(XSMAXJDP, 1);
|
||||
VSX_MAX_MINJ(XSMINJDP, 0);
|
||||
|
||||
/*
|
||||
* VSX_CMP - VSX floating point compare
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue