1a574cf9bSYang Zhong /* 2a574cf9bSYang Zhong * QEMU TCG accelerator stub 3a574cf9bSYang Zhong * 4a574cf9bSYang Zhong * Copyright Red Hat, Inc. 2013 5a574cf9bSYang Zhong * 6a574cf9bSYang Zhong * Author: Paolo Bonzini <pbonzini@redhat.com> 7a574cf9bSYang Zhong * 8a574cf9bSYang Zhong * This work is licensed under the terms of the GNU GPL, version 2 or later. 9a574cf9bSYang Zhong * See the COPYING file in the top-level directory. 10a574cf9bSYang Zhong * 11a574cf9bSYang Zhong */ 12a574cf9bSYang Zhong 13a574cf9bSYang Zhong #include "qemu/osdep.h" 14*58bc9db8SPhilippe Mathieu-Daudé #include "exec/cpu-common.h" 15a574cf9bSYang Zhong cpu_loop_exit(CPUState * cpu)168905770bSMarc-André LureauG_NORETURN void cpu_loop_exit(CPUState *cpu) 17ee64036aSPhilippe Mathieu-Daudé { 18ee64036aSPhilippe Mathieu-Daudé g_assert_not_reached(); 19ee64036aSPhilippe Mathieu-Daudé } 20ee64036aSPhilippe Mathieu-Daudé cpu_loop_exit_restore(CPUState * cpu,uintptr_t pc)218905770bSMarc-André LureauG_NORETURN void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc) 22ee64036aSPhilippe Mathieu-Daudé { 23ee64036aSPhilippe Mathieu-Daudé g_assert_not_reached(); 24ee64036aSPhilippe Mathieu-Daudé } 25