jit_emit_parametric.h 493 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _JIT_EMIT_PARAMETRIC_H_
  6. #define _JIT_EMIT_PARAMETRIC_H_
  7. #include "../jit_compiler.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. bool
  12. jit_compile_op_drop(JitCompContext *cc, bool is_drop_32);
  13. bool
  14. jit_compile_op_select(JitCompContext *cc, bool is_select_32);
  15. #ifdef __cplusplus
  16. } /* end of extern "C" */
  17. #endif
  18. #endif /* end of _JIT_EMIT_PARAMETRIC_H_ */