xref: /qemu/accel/stubs/tcg-stub.c (revision a574cf9b417bb7692e7ec371f2091f0243f62551)
1*a574cf9bSYang Zhong /*
2*a574cf9bSYang Zhong  * QEMU TCG accelerator stub
3*a574cf9bSYang Zhong  *
4*a574cf9bSYang Zhong  * Copyright Red Hat, Inc. 2013
5*a574cf9bSYang Zhong  *
6*a574cf9bSYang Zhong  * Author: Paolo Bonzini     <pbonzini@redhat.com>
7*a574cf9bSYang Zhong  *
8*a574cf9bSYang Zhong  * This work is licensed under the terms of the GNU GPL, version 2 or later.
9*a574cf9bSYang Zhong  * See the COPYING file in the top-level directory.
10*a574cf9bSYang Zhong  *
11*a574cf9bSYang Zhong  */
12*a574cf9bSYang Zhong 
13*a574cf9bSYang Zhong #include "qemu/osdep.h"
14*a574cf9bSYang Zhong #include "qemu-common.h"
15*a574cf9bSYang Zhong #include "cpu.h"
16*a574cf9bSYang Zhong #include "tcg/tcg.h"
17*a574cf9bSYang Zhong #include "exec/cpu-common.h"
18*a574cf9bSYang Zhong #include "exec/exec-all.h"
19*a574cf9bSYang Zhong 
20*a574cf9bSYang Zhong void tb_flush(CPUState *cpu)
21*a574cf9bSYang Zhong {
22*a574cf9bSYang Zhong }
23