reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/CodeGen/CGObjCGNU.cpp
  256     if (attrs & ObjCPropertyDecl::OBJC_PR_readonly) {
  257       attrs &= ~ObjCPropertyDecl::OBJC_PR_copy;
  258       attrs &= ~ObjCPropertyDecl::OBJC_PR_retain;
  259       attrs &= ~ObjCPropertyDecl::OBJC_PR_weak;
  260       attrs &= ~ObjCPropertyDecl::OBJC_PR_strong;
  263     Fields.addInt(Int8Ty, attrs & 0xff);
  264     attrs >>= 8;
  265     attrs <<= 2;
  269     attrs |= isSynthesized ? (1<<0) : 0;
  270     attrs |= isDynamic ? (1<<1) : 0;
  273     Fields.addInt(Int8Ty, attrs & 0xff);