summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:23 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:54:44 +0000
commit836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch)
tree1604da8f482d02effa033c94a84be42bc0c848c3 /fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h
parentReleasing debian version 1.44.3-2. (diff)
downloadnetdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz
netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h')
-rw-r--r--fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h b/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h
deleted file mode 100644
index 0b56cb13b..000000000
--- a/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/compilation/aot_emit_const.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
-
-#ifndef _AOT_EMIT_CONST_H_
-#define _AOT_EMIT_CONST_H_
-
-#include "aot_compiler.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-bool
-aot_compile_op_i32_const(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- int32 i32_const);
-
-bool
-aot_compile_op_i64_const(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- int64 i64_const);
-
-bool
-aot_compile_op_f32_const(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- float32 f32_const);
-
-bool
-aot_compile_op_f64_const(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- float64 f64_const);
-
-#ifdef __cplusplus
-} /* end of extern "C" */
-#endif
-
-#endif /* end of _AOT_EMIT_CONST_H_ */