aboutsummaryrefslogtreecommitdiff
path: root/include/tcg/insn-start-words.h
blob: 50c18bd326d1e6e93c8192e2f4c558d8714eb9ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: MIT */
/*
 * Define TARGET_INSN_START_WORDS
 * Copyright (c) 2008 Fabrice Bellard
 */

#ifndef TARGET_INSN_START_WORDS

#include "cpu.h"

#ifndef TARGET_INSN_START_EXTRA_WORDS
# define TARGET_INSN_START_WORDS 1
#else
# define TARGET_INSN_START_WORDS (1 + TARGET_INSN_START_EXTRA_WORDS)
#endif

#endif /* TARGET_INSN_START_WORDS */