|
From: | Philippe Mathieu-Daudé |
Subject: | Re: [PATCH 10/31] tcg: Add temp_subindex to TCGTemp |
Date: | Thu, 20 Oct 2022 16:57:24 +0200 |
User-agent: | Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.3.2 |
On 20/10/22 13:52, Richard Henderson wrote:
Record the location of a TCGTemp within a larger object.
This makes sense after looking at the next patch. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> --- include/tcg/tcg.h | 1 + tcg/tcg.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index d207bc47be..afa18986b1 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -456,6 +456,7 @@ typedef struct TCGTemp { unsigned int mem_coherent:1; unsigned int mem_allocated:1; unsigned int temp_allocated:1; + unsigned int temp_subindex:1;
[Prev in Thread] | Current Thread | [Next in Thread] |