diff options
author | Steve Naroff <snaroff@apple.com> | 2007-11-14 15:03:57 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2007-11-14 15:03:57 +0000 |
commit | a509f0403402b1e00420980ed7f75bc186b50c99 (patch) | |
tree | 47ad952fe2b5d79fcbed25ba265d868f94060489 /clang/Driver/RewriteTest.cpp | |
parent | 58ed6c04f20e620e7fa500ec0d7c8afe3dea2a2b (diff) | |
download | bcm5719-llvm-a509f0403402b1e00420980ed7f75bc186b50c99.tar.gz bcm5719-llvm-a509f0403402b1e00420980ed7f75bc186b50c99.zip |
Fix yesterday's regression with rewriting @optional/@required.
llvm-svn: 44119
Diffstat (limited to 'clang/Driver/RewriteTest.cpp')
-rw-r--r-- | clang/Driver/RewriteTest.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/clang/Driver/RewriteTest.cpp b/clang/Driver/RewriteTest.cpp index 283f3602346..b78e776f182 100644 --- a/clang/Driver/RewriteTest.cpp +++ b/clang/Driver/RewriteTest.cpp @@ -390,29 +390,26 @@ void RewriteTest::RewriteProtocolDecl(ObjcProtocolDecl *PDecl) { // Lastly, comment out the @end. SourceLocation LocEnd = PDecl->getAtEndLoc(); Rewrite.ReplaceText(LocEnd, 0, "// ", 3); -#if 0 + // Must comment out @optional/@required const char *startBuf = SM->getCharacterData(LocStart); const char *endBuf = SM->getCharacterData(LocEnd); for (const char *p = startBuf; p < endBuf; p++) { if (*p == '@' && !strncmp(p+1, "optional", strlen("optional"))) { std::string CommentedOptional = "/* @optional */"; - SourceLocation OptionalLoc = SourceLocation::getFileLoc(MainFileID, - p-MainBufStart); + SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf); Rewrite.ReplaceText(OptionalLoc, strlen("@optional"), CommentedOptional.c_str(), CommentedOptional.size()); } else if (*p == '@' && !strncmp(p+1, "required", strlen("required"))) { std::string CommentedRequired = "/* @required */"; - SourceLocation OptionalLoc = SourceLocation::getFileLoc(MainFileID, - p-MainBufStart); + SourceLocation OptionalLoc = LocStart.getFileLocWithOffset(p-startBuf); Rewrite.ReplaceText(OptionalLoc, strlen("@required"), CommentedRequired.c_str(), CommentedRequired.size()); } } -#endif } void RewriteTest::RewriteForwardProtocolDecl(ObjcForwardProtocolDecl *PDecl) { |