diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-07 22:51:18 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-01-07 22:51:18 +0000 |
commit | f292fcf6bd5118499a830e0950429effeb373c28 (patch) | |
tree | b69e57b6c55eec0faf78fec7cf7abb2409102dc5 | |
parent | d2392273581e13bc1f4e44c4e6b19e6f819d82a4 (diff) |
Fixes a bug where we were rewriting two definitions of
_objc_method (part of radar 7490408).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92957 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Frontend/RewriteObjC.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Frontend/RewriteObjC.cpp b/lib/Frontend/RewriteObjC.cpp index e087cbbcdc..4245856efa 100644 --- a/lib/Frontend/RewriteObjC.cpp +++ b/lib/Frontend/RewriteObjC.cpp @@ -114,6 +114,7 @@ namespace { llvm::raw_ostream* OutFile; bool SilenceRewriteMacroWarning; + bool objc_impl_method; std::string Preamble; @@ -497,6 +498,7 @@ void RewriteObjC::Initialize(ASTContext &context) { PropParentMap = 0; CurrentBody = 0; DisableReplaceStmt = false; + objc_impl_method = false; // Get the ID and start/end of the main file. MainFileID = SM->getMainFileID(); @@ -2953,7 +2955,6 @@ void RewriteObjC::RewriteObjCMethodsMetaData(MethodIterator MethodBegin, std::string &Result) { if (MethodBegin == MethodEnd) return; - static bool objc_impl_method = false; if (!objc_impl_method) { /* struct _objc_method { SEL _cmd; |