[LLD][COFF] Ignore DEBUG_S_XFGHASH_TYPE/VIRTUAL
[llvm-project.git] / lld / MachO / ObjC.h
blob67fa4114db0078bab8d62fce7501f87b26ec536d
1 //===- ObjC.h ---------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLD_MACHO_OBJC_H
10 #define LLD_MACHO_OBJC_H
12 #include "llvm/Support/MemoryBuffer.h"
14 namespace lld::macho {
16 namespace objc {
18 constexpr const char klass[] = "_OBJC_CLASS_$_";
19 constexpr const char metaclass[] = "_OBJC_METACLASS_$_";
20 constexpr const char ehtype[] = "_OBJC_EHTYPE_$_";
21 constexpr const char ivar[] = "_OBJC_IVAR_$_";
23 } // namespace objc
25 bool hasObjCSection(llvm::MemoryBufferRef);
27 } // namespace lld::macho
29 #endif