zig/deps/lld/ELF/MapFile.h

21 lines
518 B
C
Raw Normal View History

//===- 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 {
2018-01-18 06:29:21 +08:00
void writeMapFile();
2018-08-05 05:47:16 +08:00
void writeCrossReferenceTable();
} // namespace elf
} // namespace lld
#endif