llvm/llvm/lib/ObjCopy/XCOFF/XCOFFObjcopy.cpp

//===- XCOFFObjcopy.cpp ---------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "llvm/ObjCopy/CommonConfig.h"
#include "llvm/ObjCopy/XCOFF/XCOFFConfig.h"
#include "llvm/ObjCopy/XCOFF/XCOFFObjcopy.h"
#include "llvm/Support/Errc.h"
#include "XCOFFObject.h"
#include "XCOFFReader.h"
#include "XCOFFWriter.h"

namespace llvm {
namespace objcopy {
namespace xcoff {

usingnamespaceobject;

static Error handleArgs(const CommonConfig &Config, Object &Obj) {}

Error executeObjcopyOnBinary(const CommonConfig &Config, const XCOFFConfig &,
                             XCOFFObjectFile &In, raw_ostream &Out) {}

} // end namespace xcoff
} // end namespace objcopy
} // end namespace llvm