aot_validator.h 351 B

123456789101112131415
  1. /*
  2. * Copyright (C) 2025 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _AOT_VALIDATOR_H_
  6. #define _AOT_VALIDATOR_H_
  7. #include "aot_runtime.h"
  8. bool
  9. aot_module_validate(const AOTModule *module, char *error_buf,
  10. uint32 error_buf_size);
  11. #endif /* _AOT_VALIDATOR_H_ */