repo.or.cz
/
qemu
/
ar7.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'trivial-branch-for-7.2-pull-request' of https://gitlab.com/laurent_vivier...
[qemu/ar7.git]
/
include
/
sysemu
/
tcg.h
blob
53352450ff6b292165eaf290dcf768fea7d6912a
1
/*
2
* QEMU TCG support
3
*
4
* This work is licensed under the terms of the GNU GPL, version 2 or later.
5
* See the COPYING file in the top-level directory.
6
*/
7
8
#ifndef SYSEMU_TCG_H
9
#define SYSEMU_TCG_H
10
11
#ifdef CONFIG_TCG
12
extern
bool
tcg_allowed
;
13
#define tcg_enabled() (tcg_allowed)
14
#else
15
#define tcg_enabled() 0
16
#endif
17
18
#endif