2017-01-14 11:14:46 +08:00
|
|
|
//===- MapFile.h ------------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2017-01-14 11:14:46 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_COFF_MAPFILE_H
|
|
|
|
#define LLD_COFF_MAPFILE_H
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace coff {
|
2021-09-17 07:48:26 +08:00
|
|
|
class COFFLinkerContext;
|
|
|
|
void writeMapFile(COFFLinkerContext &ctx);
|
2017-01-14 11:14:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|