diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2024-01-10 18:21:58 +1100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2024-02-03 23:43:50 +0000 |
| commit | fb04ab7ddd8ca226227d78dbe27c8696f4a27d7f (patch) | |
| tree | 63c6c0d2293baeb0e91a184257405c241f9dcd73 /tcg/tcg-internal.h | |
| parent | ceb9ee06b719b3185183c72f818e75600c8e2607 (diff) | |
| download | focaccia-qemu-fb04ab7ddd8ca226227d78dbe27c8696f4a27d7f.tar.gz focaccia-qemu-fb04ab7ddd8ca226227d78dbe27c8696f4a27d7f.zip | |
tcg/optimize: Lower TCG_COND_TST{EQ,NE} if unsupported
After having performed other simplifications, lower any remaining test comparisons with AND. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg-internal.h')
| -rw-r--r-- | tcg/tcg-internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tcg/tcg-internal.h b/tcg/tcg-internal.h index 6c9d9e48db..9b0d982f65 100644 --- a/tcg/tcg-internal.h +++ b/tcg/tcg-internal.h @@ -83,6 +83,8 @@ static inline TCGv_i64 TCGV128_HIGH(TCGv_i128 t) bool tcg_target_has_memory_bswap(MemOp memop); +TCGTemp *tcg_temp_new_internal(TCGType type, TCGTempKind kind); + /* * Locate or create a read-only temporary that is a constant. * This kind of temporary need not be freed, but for convenience |