1 /*========================== begin_copyright_notice ============================
2 
3 Copyright (C) 2019-2021 Intel Corporation
4 
5 SPDX-License-Identifier: MIT
6 
7 ============================= end_copyright_notice ===========================*/
8 
9 #pragma once
10 
11 #include "Compiler/IGCPassSupport.h"
12 #include "IGC/common/Types.hpp"
13 
14 #include <llvm/Pass.h>
15 
16 
17 namespace llvm {class FunctionPass;}
18 namespace IGC
19 {
20     llvm::FunctionPass* createIntDivRemCombinePass();
21 } // namespace IGC
22