Peter Collingbourne | 66ac1d6 | 2016-04-22 20:21:26 +0000 | [diff] [blame] | 1 | //===- SymbolListFile.h -----------------------------------------*- C++ -*-===// |
Adhemerval Zanella | 9df0720 | 2016-04-13 18:51:11 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Linker |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Peter Collingbourne | 66ac1d6 | 2016-04-22 20:21:26 +0000 | [diff] [blame] | 10 | #ifndef LLD_ELF_SYMBOL_LIST_FILE_H |
| 11 | #define LLD_ELF_SYMBOL_LIST_FILE_H |
Adhemerval Zanella | 9df0720 | 2016-04-13 18:51:11 +0000 | [diff] [blame] | 12 | |
| 13 | #include "lld/Core/LLVM.h" |
| 14 | #include "llvm/Support/MemoryBuffer.h" |
| 15 | |
| 16 | namespace lld { |
| 17 | namespace elf { |
| 18 | |
| 19 | void parseDynamicList(MemoryBufferRef MB); |
Adhemerval Zanella | 9df0720 | 2016-04-13 18:51:11 +0000 | [diff] [blame] | 20 | |
| 21 | } // namespace elf |
| 22 | } // namespace lld |
| 23 | |
| 24 | #endif |