diff options
-rw-r--r-- | Driver/RewriteTest.cpp | 11 | ||||
-rw-r--r-- | clang.xcodeproj/project.pbxproj | 1 |
2 files changed, 11 insertions, 1 deletions
diff --git a/Driver/RewriteTest.cpp b/Driver/RewriteTest.cpp index 999b0796a9..026c5d62c4 100644 --- a/Driver/RewriteTest.cpp +++ b/Driver/RewriteTest.cpp @@ -329,6 +329,17 @@ void RewriteTest::RewriteInterfaceDecl(ObjcInterfaceDecl *ClassDecl) { endBuf += Lexer::MeasureTokenLength(LocEnd, *SM); std::string ResultStr; + if (!ObjcForwardDecls.count(ClassDecl)) { + // we haven't seen a forward decl - generate a typedef. + ResultStr += "typedef struct "; + ResultStr += ClassDecl->getName(); + ResultStr += " "; + ResultStr += ClassDecl->getName(); + ResultStr += ";"; + + // Mark this typedef as having been generated. + ObjcForwardDecls.insert(ClassDecl); + } SynthesizeObjcInternalStruct(ClassDecl, ResultStr); Rewrite.ReplaceText(LocStart, endBuf-startBuf, diff --git a/clang.xcodeproj/project.pbxproj b/clang.xcodeproj/project.pbxproj index fe4cf8d85b..de41b4628d 100644 --- a/clang.xcodeproj/project.pbxproj +++ b/clang.xcodeproj/project.pbxproj @@ -756,7 +756,6 @@ 08FB7793FE84155DC02AAC07 /* Project object */ = { isa = PBXProject; buildConfigurationList = 1DEB923508733DC60010E9CD /* Build configuration list for PBXProject "clang" */; - compatibilityVersion = "Xcode 2.4"; hasScannedForEncodings = 1; mainGroup = 08FB7794FE84155DC02AAC07 /* clang */; projectDirPath = ""; |