2017-01-13 21:05:46 +00:00
|
|
|
//===- MapFile.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_MAPFILE_H
|
|
|
|
#define LLD_ELF_MAPFILE_H
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace elf {
|
2017-10-28 20:15:56 +00:00
|
|
|
void writeMapFile();
|
2018-03-14 20:29:45 +00:00
|
|
|
void writeCrossReferenceTable();
|
2017-07-18 11:55:35 +00:00
|
|
|
} // namespace elf
|
|
|
|
} // namespace lld
|
2017-01-13 21:05:46 +00:00
|
|
|
|
|
|
|
#endif
|