mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
2bc33a6598
This patch prepares llvm-objcopy to move its implementation into a separate library. To make it possible it is necessary to minimize internal dependencies. Differential Revision: https://reviews.llvm.org/D99055
35 lines
909 B
C++
35 lines
909 B
C++
//===- llvm-objcopy.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 LLVM_TOOLS_OBJCOPY_OBJCOPY_H
|
|
#define LLVM_TOOLS_OBJCOPY_OBJCOPY_H
|
|
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
namespace llvm {
|
|
|
|
struct NewArchiveMember;
|
|
|
|
namespace object {
|
|
|
|
class Archive;
|
|
|
|
} // end namespace object
|
|
|
|
namespace objcopy {
|
|
class MultiFormatConfig;
|
|
Expected<std::vector<NewArchiveMember>>
|
|
createNewArchiveMembers(const MultiFormatConfig &Config,
|
|
const object::Archive &Ar);
|
|
|
|
} // end namespace objcopy
|
|
} // end namespace llvm
|
|
|
|
#endif // LLVM_TOOLS_OBJCOPY_OBJCOPY_H
|