diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-03-19 12:46:55 +0100 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 15:07:32 -0700 |
| commit | 4ff1b33edf95497a8e6f0615a3ae91f736cf1f8a (patch) | |
| tree | 98b1e4018c5ff22a632592a283b1f13e5deb209e /target/avr/cpu-param.h | |
| parent | 21d41c566d0694a90836d5c7ae4c6b279f5312a8 (diff) | |
| download | focaccia-qemu-4ff1b33edf95497a8e6f0615a3ae91f736cf1f8a.tar.gz focaccia-qemu-4ff1b33edf95497a8e6f0615a3ae91f736cf1f8a.zip | |
tcg: Always define TARGET_INSN_START_EXTRA_WORDS
Do not define TARGET_INSN_START_EXTRA_WORDS under the hood, have each target explicitly define it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/avr/cpu-param.h')
| -rw-r--r-- | target/avr/cpu-param.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/avr/cpu-param.h b/target/avr/cpu-param.h index f5248ce9e7..9d37848d97 100644 --- a/target/avr/cpu-param.h +++ b/target/avr/cpu-param.h @@ -25,6 +25,8 @@ #define TARGET_PHYS_ADDR_SPACE_BITS 24 #define TARGET_VIRT_ADDR_SPACE_BITS 24 +#define TARGET_INSN_START_EXTRA_WORDS 0 + #define TCG_GUEST_DEFAULT_MO 0 #endif |