diff options
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 |