2017-01-14 05:05: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 05:05:46 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_MAPFILE_H
|
|
|
|
#define LLD_ELF_MAPFILE_H
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace elf {
|
2021-11-30 06:14:53 +08:00
|
|
|
void writeMapAndCref();
|
2017-07-18 19:55:35 +08:00
|
|
|
} // namespace elf
|
|
|
|
} // namespace lld
|
2017-01-14 05:05:46 +08:00
|
|
|
|
|
|
|
#endif
|