]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/COFF/MapFile.h
Update to bmake-201802222
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / COFF / MapFile.h
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_COFF_MAPFILE_H
11 #define LLD_COFF_MAPFILE_H
12
13 #include "llvm/ADT/ArrayRef.h"
14
15 namespace lld {
16 namespace coff {
17 class OutputSection;
18 void writeMapFile(llvm::ArrayRef<OutputSection *> OutputSections);
19 }
20 }
21
22 #endif