1 /*========================== begin_copyright_notice ============================
2 
3 Copyright (C) 2017-2021 Intel Corporation
4 
5 SPDX-License-Identifier: MIT
6 
7 ============================= end_copyright_notice ===========================*/
8 
9 #ifndef EMU64OPSPASS_H
10 #define EMU64OPSPASS_H
11 
12 #include "common/LLVMWarningsPush.hpp"
13 #include "llvm/Pass.h"
14 #include "llvm/PassRegistry.h"
15 #include "common/LLVMWarningsPop.hpp"
16 
17 void initializeEmu64OpsPass(llvm::PassRegistry&);
18 llvm::FunctionPass* createEmu64OpsPass();
19 
20 #endif // EMU64OPSPASS_H
21