llvm/llvm/tools/obj2yaml/archive2yaml.cpp

//===------ utils/archive2yaml.cpp - obj2yaml conversion tool ---*- 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
//
//===----------------------------------------------------------------------===//

#include "obj2yaml.h"
#include "llvm/BinaryFormat/Magic.h"
#include "llvm/ObjectYAML/ArchiveYAML.h"

usingnamespacellvm;

namespace {

class ArchiveDumper {};

} // namespace

Error archive2yaml(raw_ostream &Out, MemoryBufferRef Source) {}