Rafael Espindola | 1ebfc59 | 2017-01-13 21:05:46 +0000 | [diff] [blame] | 1 | //===- MapFile.h ------------------------------------------------*- C++ -*-===// |
| 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 | |
| 10 | #ifndef LLD_ELF_MAPFILE_H |
| 11 | #define LLD_ELF_MAPFILE_H |
| 12 | |
Rafael Espindola | 1ebfc59 | 2017-01-13 21:05:46 +0000 | [diff] [blame] | 13 | namespace lld { |
| 14 | namespace elf { |
Rui Ueyama | 7f9694a | 2017-10-28 20:15:56 +0000 | [diff] [blame] | 15 | void writeMapFile(); |
Rui Ueyama | db46a62 | 2018-03-14 20:29:45 +0000 | [diff] [blame] | 16 | void writeCrossReferenceTable(); |
George Rimar | 67c6072 | 2017-07-18 11:55:35 +0000 | [diff] [blame] | 17 | } // namespace elf |
| 18 | } // namespace lld |
Rafael Espindola | 1ebfc59 | 2017-01-13 21:05:46 +0000 | [diff] [blame] | 19 | |
| 20 | #endif |