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

Use the same value for all targets. Rename TARGET_INSN_START_WORDS and do not depend on TARGET_INSN_START_EXTRA_WORDS. Remove TCGContext.insn_start_words. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
12 lines
229 B
C
12 lines
229 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Define INSN_START_WORDS
|
|
* Copyright (c) 2008 Fabrice Bellard
|
|
*/
|
|
|
|
#ifndef TCG_INSN_START_WORDS
|
|
#define TCG_INSN_START_WORDS
|
|
|
|
#define INSN_START_WORDS 3
|
|
|
|
#endif /* TCG_INSN_START_WORDS */
|