mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00:00
cc2da5554b
Differential Revision: https://reviews.llvm.org/D77187
22 lines
625 B
C++
22 lines
625 B
C++
//===- MapFile.h ------------------------------------------------*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLD_WASM_MAPFILE_H
|
|
#define LLD_WASM_MAPFILE_H
|
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
namespace lld {
|
|
namespace wasm {
|
|
class OutputSection;
|
|
void writeMapFile(llvm::ArrayRef<OutputSection *> outputSections);
|
|
} // namespace wasm
|
|
} // namespace lld
|
|
|
|
#endif
|