QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
442 B
18 lines
442 B
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Helper file for declaring TCG helper functions.
|
|
* This one expands prototypes for the helper functions.
|
|
*/
|
|
|
|
#ifndef HELPER_PROTO_COMMON_H
|
|
#define HELPER_PROTO_COMMON_H
|
|
|
|
#include "qemu/atomic128.h" /* for HAVE_CMPXCHG128 */
|
|
|
|
#define HELPER_H "accel/tcg/tcg-runtime.h"
|
|
#include "exec/helper-proto.h.inc"
|
|
#undef HELPER_H
|
|
|
|
#include "accel/tcg/getpc.h"
|
|
|
|
#endif /* HELPER_PROTO_COMMON_H */
|
|
|