//===- llvm/TextAPI/ArchitectureSet.h - ArchitectureSet ---------*- 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 // //===----------------------------------------------------------------------===// // // Defines the architecture set. // //===----------------------------------------------------------------------===// #ifndef LLVM_TEXTAPI_ARCHITECTURESET_H #define LLVM_TEXTAPI_ARCHITECTURESET_H #include "llvm/TextAPI/Architecture.h" #include <cstddef> #include <iterator> #include <limits> #include <string> #include <tuple> #include <vector> namespace llvm { class raw_ostream; namespace MachO { class ArchitectureSet { … }; inline ArchitectureSet operator|(const Architecture &lhs, const Architecture &rhs) { … } raw_ostream &operator<<(raw_ostream &OS, ArchitectureSet Set); } // end namespace MachO. } // end namespace llvm. #endif // LLVM_TEXTAPI_ARCHITECTURESET_H