blob: 68d8ba8d4a04b4a95c3eaf31b0e05b7b4621c084 [file] [log] [blame]
Rafael Espindola1ebfc592017-01-13 21:05:46 +00001//===- 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 Espindola1b414092017-05-18 17:26:00 +000013#include <llvm/ADT/ArrayRef.h>
Rafael Espindola1ebfc592017-01-13 21:05:46 +000014
15namespace lld {
16namespace elf {
Rafael Espindola2d9a3be2017-05-30 01:30:14 +000017struct OutputSectionCommand;
18template <class ELFT>
19void writeMapFile(llvm::ArrayRef<OutputSectionCommand *> Script);
Rafael Espindola1ebfc592017-01-13 21:05:46 +000020}
21}
22
23#endif