19 lines
		
	
	
		
			485 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			485 B
		
	
	
	
		
			C++
		
	
	
	
| //===- lib/ReaderWriter/ELF/PPC/PPCLinkingContext.cpp ---------------------===//
 | |
| //
 | |
| //                             The LLVM Linker
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #include "PPCLinkingContext.h"
 | |
| 
 | |
| #include "lld/Core/LLVM.h"
 | |
| 
 | |
| #include "llvm/ADT/StringSwitch.h"
 | |
| #include "llvm/Support/ErrorOr.h"
 | |
| 
 | |
| using namespace lld;
 | |
| 
 |