diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2023-10-23 18:53:27 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2024-02-03 23:43:47 +0000 |
commit | d48097d0270e702e4de88f6e36a256ebff33ad6c (patch) | |
tree | 425d2eaad348ccdf7b4f4cc13b7564e17c64f183 /tcg | |
parent | 39a6e4f87e7b75a45b08d6dc8b8b7c2954c87440 (diff) |
tcg: Introduce TCG_COND_TST{EQ,NE}
Add the enumerators, adjust the helpers to match, and dump.
Not supported anywhere else just yet.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2482,7 +2482,9 @@ static const char * const cond_name[] = [TCG_COND_LTU] = "ltu", [TCG_COND_GEU] = "geu", [TCG_COND_LEU] = "leu", - [TCG_COND_GTU] = "gtu" + [TCG_COND_GTU] = "gtu", + [TCG_COND_TSTEQ] = "tsteq", + [TCG_COND_TSTNE] = "tstne", }; static const char * const ldst_name[(MO_BSWAP | MO_SSIZE) + 1] = |