[PATCH 02/27] tcg/aarch64: Fix I3617_CMLE0

Richard Henderson posted 27 patches 4 years, 2 months ago
Maintainers: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, Laurent Vivier <laurent@vivier.eu>, Richard Henderson <richard.henderson@linaro.org>, Eduardo Habkost <ehabkost@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>
There is a newer version of this series
[PATCH 02/27] tcg/aarch64: Fix I3617_CMLE0
Posted by Richard Henderson 4 years, 2 months ago
Fix a typo in the encodeing of the cmle (zero) instruction.

Fixes: 14e4c1e2355 ("tcg/aarch64: Add vector operations")
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 tcg/aarch64/tcg-target.c.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tcg/aarch64/tcg-target.c.inc b/tcg/aarch64/tcg-target.c.inc
index ec0a86d9d8..c8e41dd638 100644
--- a/tcg/aarch64/tcg-target.c.inc
+++ b/tcg/aarch64/tcg-target.c.inc
@@ -561,7 +561,7 @@ typedef enum {
     I3617_CMEQ0     = 0x0e209800,
     I3617_CMLT0     = 0x0e20a800,
     I3617_CMGE0     = 0x2e208800,
-    I3617_CMLE0     = 0x2e20a800,
+    I3617_CMLE0     = 0x2e209800,
     I3617_NOT       = 0x2e205800,
     I3617_ABS       = 0x0e20b800,
     I3617_NEG       = 0x2e20b800,
-- 
2.25.1


Re: [PATCH 02/27] tcg/aarch64: Fix I3617_CMLE0
Posted by Peter Maydell 4 years, 2 months ago
On Tue, 2 Mar 2021 at 18:05, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> Fix a typo in the encodeing of the cmle (zero) instruction.
>
> Fixes: 14e4c1e2355 ("tcg/aarch64: Add vector operations")
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>  tcg/aarch64/tcg-target.c.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tcg/aarch64/tcg-target.c.inc b/tcg/aarch64/tcg-target.c.inc
> index ec0a86d9d8..c8e41dd638 100644
> --- a/tcg/aarch64/tcg-target.c.inc
> +++ b/tcg/aarch64/tcg-target.c.inc
> @@ -561,7 +561,7 @@ typedef enum {
>      I3617_CMEQ0     = 0x0e209800,
>      I3617_CMLT0     = 0x0e20a800,
>      I3617_CMGE0     = 0x2e208800,
> -    I3617_CMLE0     = 0x2e20a800,
> +    I3617_CMLE0     = 0x2e209800,
>      I3617_NOT       = 0x2e205800,
>      I3617_ABS       = 0x0e20b800,
>      I3617_NEG       = 0x2e20b800,
> --

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>

thanks
-- PMM