Home
last modified time | relevance | path

Searched defs:ObjCImageInfoFlags (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp229 struct ObjCImageInfoFlags { struct
230 uint16_t SwiftABIVersion;
231 uint16_t SwiftVersion;
232 bool HasCategoryClassProperties;
233 bool HasSignedObjCClassROs;
235 static constexpr uint32_t SIGNED_CLASS_RO = (1 << 4);
236 static constexpr uint32_t HAS_CATEGORY_CLASS_PROPERTIES = (1 << 6);
238 explicit ObjCImageInfoFlags(uint32_t RawFlags) { in ObjCImageInfoFlags() function
245 uint32_t rawFlags() const { in rawFlags()