//===- lib/TextAPI/SymbolSet.cpp - TAPI Symbol Set ------------*- 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 "llvm/TextAPI/SymbolSet.h" usingnamespacellvm; usingnamespacellvm::MachO; Symbol *SymbolSet::addGlobalImpl(EncodeKind Kind, StringRef Name, SymbolFlags Flags) { … } Symbol *SymbolSet::addGlobal(EncodeKind Kind, StringRef Name, SymbolFlags Flags, const Target &Targ) { … } const Symbol *SymbolSet::findSymbol(EncodeKind Kind, StringRef Name, ObjCIFSymbolKind ObjCIF) const { … }