2023-03-31 20:37:04 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
|
|
|
* Helper file for declaring TCG helper functions.
|
|
|
|
* This one expands generation functions for tcg opcodes.
|
|
|
|
*/
|
2014-04-08 09:31:41 +04:00
|
|
|
|
|
|
|
#ifndef HELPER_GEN_H
|
2016-06-29 16:29:06 +03:00
|
|
|
#define HELPER_GEN_H
|
2014-04-08 09:31:41 +04:00
|
|
|
|
2023-04-01 05:07:00 +03:00
|
|
|
#include "exec/helper-gen-common.h"
|
2014-04-08 09:31:41 +04:00
|
|
|
|
2023-04-01 05:07:00 +03:00
|
|
|
#define HELPER_H "helper.h"
|
|
|
|
#include "exec/helper-gen.h.inc"
|
|
|
|
#undef HELPER_H
|
2014-04-08 09:31:41 +04:00
|
|
|
|
|
|
|
#endif /* HELPER_GEN_H */
|