mirror of
				https://github.com/intel/intel-graphics-compiler.git
				synced 2025-10-30 08:18:26 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			668 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			668 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*========================== begin_copyright_notice ============================
 | |
| 
 | |
| Copyright (C) 2018-2021 Intel Corporation
 | |
| 
 | |
| SPDX-License-Identifier: MIT
 | |
| 
 | |
| ============================= end_copyright_notice ===========================*/
 | |
| 
 | |
| #ifndef _CISA_FIXUPEXTRACTVALUEPAIR_H_
 | |
| #define _CISA_FIXUPEXTRACTVALUEPAIR_H_
 | |
| 
 | |
| #include "common/LLVMWarningsPush.hpp"
 | |
| #include <llvm/Pass.h>
 | |
| #include "common/LLVMWarningsPop.hpp"
 | |
| 
 | |
| #include "Compiler/CISACodeGen/ShaderCodeGen.hpp"
 | |
| 
 | |
| namespace IGC {
 | |
| llvm::FunctionPass *createExtractValuePairFixupPass();
 | |
| void initializeExtractValuePairFixupPass(llvm::PassRegistry &);
 | |
| } // End namespace IGC
 | |
| 
 | |
| #endif // _CISA_FIXUPEXTRACTVALUEPAIR_H_
 | 
