diff options
author | Eric Christopher <echristo@apple.com> | 2012-07-19 22:22:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-07-19 22:22:55 +0000 |
commit | ffb0c3adc27d257c8453886957b8d220d1ad14d8 (patch) | |
tree | b6172808aad854a185d1a4babafec52c6757d6fe /lib/AST/DumpXML.cpp | |
parent | 6dba4a1bc3c257bee0812a130c468917ea210e05 (diff) |
Remove HasSynthBitfield and all callers/writers/etc. Also remove
previous ResetObjCLayout calls since this is now handled in Sema.
Part of rdar://11842763
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160527 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DumpXML.cpp')
-rw-r--r-- | lib/AST/DumpXML.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/AST/DumpXML.cpp b/lib/AST/DumpXML.cpp index 4df692d9a5..c5b3c6875b 100644 --- a/lib/AST/DumpXML.cpp +++ b/lib/AST/DumpXML.cpp @@ -778,7 +778,6 @@ struct XMLDumper : public XMLDeclVisitor<XMLDumper>, // ObjCCategoryDecl void visitObjCCategoryDeclAttrs(ObjCCategoryDecl *D) { setFlag("extension", D->IsClassExtension()); - setFlag("synth_bitfield", D->hasSynthBitfield()); } void visitObjCCategoryDeclChildren(ObjCCategoryDecl *D) { visitDeclRef("interface", D->getClassInterface()); @@ -804,7 +803,6 @@ struct XMLDumper : public XMLDeclVisitor<XMLDumper>, // ObjCImplementationDecl void visitObjCImplementationDeclAttrs(ObjCImplementationDecl *D) { - setFlag("synth_bitfield", D->hasSynthBitfield()); set("identifier", D->getName()); } void visitObjCImplementationDeclChildren(ObjCImplementationDecl *D) { |