//===- ArchiveEmitter.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/ObjectYAML/ArchiveYAML.h" #include "llvm/ObjectYAML/yaml2obj.h" #include "llvm/Support/Error.h" #include "llvm/Support/raw_ostream.h" usingnamespacellvm; usingnamespaceArchYAML; namespace llvm { namespace yaml { bool yaml2archive(ArchYAML::Archive &Doc, raw_ostream &Out, ErrorHandler EH) { … } } // namespace yaml } // namespace llvm