mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 06:43:53 -06:00

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>
13 lines
279 B
C
13 lines
279 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Define TARGET_INSN_START_WORDS
|
|
* Copyright (c) 2008 Fabrice Bellard
|
|
*/
|
|
|
|
#ifndef TARGET_INSN_START_WORDS
|
|
|
|
#include "cpu-param.h"
|
|
|
|
# define TARGET_INSN_START_WORDS (1 + TARGET_INSN_START_EXTRA_WORDS)
|
|
|
|
#endif /* TARGET_INSN_START_WORDS */
|