25 lines
		
	
	
		
			604 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			604 B
		
	
	
	
		
			C++
		
	
	
	
| //===- Writer.h -------------------------------------------------*- C++ -*-===//
 | |
| //
 | |
| //                             The LLVM Linker
 | |
| //
 | |
| // This file is distributed under the University of Illinois Open Source
 | |
| // License. See LICENSE.TXT for details.
 | |
| //
 | |
| //===----------------------------------------------------------------------===//
 | |
| 
 | |
| #ifndef LLD_ELF_WRITER_H
 | |
| #define LLD_ELF_WRITER_H
 | |
| 
 | |
| namespace lld {
 | |
| namespace elf2 {
 | |
| 
 | |
| template <class ELFT> class SymbolTable;
 | |
| 
 | |
| template <class ELFT> void writeResult(SymbolTable<ELFT> *Symtab);
 | |
| 
 | |
| template <class ELFT> void markLive(SymbolTable<ELFT> *Symtab);
 | |
| }
 | |
| }
 | |
| 
 | |
| #endif
 |