xref: /openbsd/gnu/llvm/lld/COFF/MapFile.h (revision dfe94b16)
1ece8a530Spatrick //===- MapFile.h ------------------------------------------------*- C++ -*-===//
2ece8a530Spatrick //
3ece8a530Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4ece8a530Spatrick // See https://llvm.org/LICENSE.txt for license information.
5ece8a530Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6ece8a530Spatrick //
7ece8a530Spatrick //===----------------------------------------------------------------------===//
8ece8a530Spatrick 
9ece8a530Spatrick #ifndef LLD_COFF_MAPFILE_H
10ece8a530Spatrick #define LLD_COFF_MAPFILE_H
11ece8a530Spatrick 
12*dfe94b16Srobert namespace lld::coff {
13*dfe94b16Srobert class COFFLinkerContext;
14*dfe94b16Srobert void writeMapFile(COFFLinkerContext &ctx);
15ece8a530Spatrick }
16ece8a530Spatrick 
17ece8a530Spatrick #endif
18