diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:03:39 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-04-16 16:03:39 +0000 |
commit | d2d3ebb81992e107edf95c1c136d7a342d9b1418 (patch) | |
tree | bb1af8fff2b1400cf240e3b2532a1e5d22a121da /COFF/MapFile.h | |
parent | 16787c9ce0b96aaa669d7fab3a495916b35ce758 (diff) |
Notes
Diffstat (limited to 'COFF/MapFile.h')
-rw-r--r-- | COFF/MapFile.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/COFF/MapFile.h b/COFF/MapFile.h new file mode 100644 index 0000000000000..0d0d68ce3ead0 --- /dev/null +++ b/COFF/MapFile.h @@ -0,0 +1,22 @@ +//===- 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_COFF_MAPFILE_H +#define LLD_COFF_MAPFILE_H + +#include "llvm/ADT/ArrayRef.h" + +namespace lld { +namespace coff { +class OutputSection; +void writeMapFile(llvm::ArrayRef<OutputSection *> OutputSections); +} +} + +#endif |