blob: 8a5f8325f06050c45d685334c48f5496e9ca89b1 [file] [log] [blame]
// Copyright 2021 The IREE Authors
//
// Licensed under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef IREE_COMPILER_PLUGINS_TARGET_LLVMCPU_BUILTINS_MUSL_H_
#define IREE_COMPILER_PLUGINS_TARGET_LLVMCPU_BUILTINS_MUSL_H_
#include "llvm/IR/Module.h"
#include "llvm/Target/TargetMachine.h"
namespace mlir::iree_compiler::IREE::HAL {
llvm::Expected<std::unique_ptr<llvm::Module>>
loadMuslBitcode(llvm::TargetMachine *targetMachine, llvm::LLVMContext &context);
} // namespace mlir::iree_compiler::IREE::HAL
#endif // IREE_COMPILER_PLUGINS_TARGET_LLVMCPU_BUILTINS_MUSL_H_