diff mbox

[2/2] target-sparc: fix FMOVr instruction

Message ID 1350430115-23724-2-git-send-email-aurelien@aurel32.net
State New
Headers show

Commit Message

Aurelien Jarno Oct. 16, 2012, 11:28 p.m. UTC
Like the MOVr instruction, the FMOVr instruction has the condition
encoded between bits 10 and 12.

Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
---
 target-sparc/translate.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Blue Swirl Oct. 20, 2012, 9:03 a.m. UTC | #1
On Tue, Oct 16, 2012 at 11:28 PM, Aurelien Jarno <aurelien@aurel32.net> wrote:
> Like the MOVr instruction, the FMOVr instruction has the condition
> encoded between bits 10 and 12.

Thanks, applied.

>
> Cc: Blue Swirl <blauwirbel@gmail.com>
> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
> ---
>  target-sparc/translate.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target-sparc/translate.c b/target-sparc/translate.c
> index 6cef96b..6d05e7d 100644
> --- a/target-sparc/translate.c
> +++ b/target-sparc/translate.c
> @@ -3154,7 +3154,7 @@ static void disas_sparc_insn(DisasContext * dc, unsigned int insn)
>  #define FMOVR(sz)                                                  \
>                  do {                                               \
>                      DisasCompare cmp;                              \
> -                    cond = GET_FIELD_SP(insn, 14, 17);             \
> +                    cond = GET_FIELD_SP(insn, 10, 12);             \
>                      cpu_src1 = get_src1(insn, cpu_src1);           \
>                      gen_compare_reg(&cmp, cond, cpu_src1);         \
>                      gen_fmov##sz(dc, &cmp, rd, rs2);               \
> --
> 1.7.10.4
>
diff mbox

Patch

diff --git a/target-sparc/translate.c b/target-sparc/translate.c
index 6cef96b..6d05e7d 100644
--- a/target-sparc/translate.c
+++ b/target-sparc/translate.c
@@ -3154,7 +3154,7 @@  static void disas_sparc_insn(DisasContext * dc, unsigned int insn)
 #define FMOVR(sz)                                                  \
                 do {                                               \
                     DisasCompare cmp;                              \
-                    cond = GET_FIELD_SP(insn, 14, 17);             \
+                    cond = GET_FIELD_SP(insn, 10, 12);             \
                     cpu_src1 = get_src1(insn, cpu_src1);           \
                     gen_compare_reg(&cmp, cond, cpu_src1);         \
                     gen_fmov##sz(dc, &cmp, rd, rs2);               \