Skip to content

Commit

Permalink
tcg/aarch64: Fix I3617_CMLE0
Browse files Browse the repository at this point in the history
Fix a typo in the encodeing of the cmle (zero) instruction.

Fixes: 14e4c1e ("tcg/aarch64: Add vector operations")
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Mar 6, 2021
1 parent 707b45a commit 6c2c777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcg/aarch64/tcg-target.c.inc
Expand Up @@ -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,
Expand Down

0 comments on commit 6c2c777

Please sign in to comment.