28 lines · c
1//===- DXILOpLowering.h - Lowering to DXIL operations -----------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// \file Pass for lowering llvm intrinsics into DXIL operations.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_LIB_TARGET_DIRECTX_DXILOPLOWERING_H14#define LLVM_LIB_TARGET_DIRECTX_DXILOPLOWERING_H15 16#include "llvm/IR/PassManager.h"17 18namespace llvm {19 20class DXILOpLowering : public PassInfoMixin<DXILOpLowering> {21public:22 PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM);23};24 25} // namespace llvm26 27#endif // LLVM_LIB_TARGET_DIRECTX_DXILOPLOWERING_H28