blob: 24d636890e53cd841623dd5fa2e9a1e9ae4e699a [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
13#include "OutputSections.h"
14
15namespace lld {
16namespace elf {
17template <class ELFT>
Rafael Espindola24e6f362017-02-24 15:07:30 +000018void writeMapFile(llvm::ArrayRef<OutputSection *> OutputSections);
Rafael Espindola1ebfc592017-01-13 21:05:46 +000019}
20}
21
22#endif