xref: /qemu/include/tcg/insn-start-words.h (revision c7b64948)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Define TARGET_INSN_START_WORDS
4  * Copyright (c) 2008 Fabrice Bellard
5  */
6 
7 #ifndef TARGET_INSN_START_WORDS
8 
9 #include "cpu.h"
10 
11 #ifndef TARGET_INSN_START_EXTRA_WORDS
12 # define TARGET_INSN_START_WORDS 1
13 #else
14 # define TARGET_INSN_START_WORDS (1 + TARGET_INSN_START_EXTRA_WORDS)
15 #endif
16 
17 #endif /* TARGET_INSN_START_WORDS */
18