summary refs log tree commit diff stats
path: root/accel/stubs/tcg-stub.c
blob: 77055e396443b5e115d143fb4d5f7e9929e0e554 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * QEMU TCG accelerator stub
 *
 * Copyright Red Hat, Inc. 2013
 *
 * Author: Paolo Bonzini     <pbonzini@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

#include "qemu/osdep.h"
#include "exec/cpu-common.h"

G_NORETURN void cpu_loop_exit(CPUState *cpu)
{
    g_assert_not_reached();
}