mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +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
22 lines
696 B
C++
22 lines
696 B
C++
//===- COFFConfig.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_LLVM_OBJCOPY_COFF_COFFCONFIG_H
|
|
#define LLVM_TOOLS_LLVM_OBJCOPY_COFF_COFFCONFIG_H
|
|
|
|
namespace llvm {
|
|
namespace objcopy {
|
|
|
|
// Coff specific configuration for copying/stripping a single file.
|
|
struct COFFConfig {};
|
|
|
|
} // namespace objcopy
|
|
} // namespace llvm
|
|
|
|
#endif // LLVM_TOOLS_LLVM_OBJCOPY_COFF_COFFCONFIG_H
|