diff options
author | Steve Naroff <snaroff@apple.com> | 2008-10-05 00:12:46 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2008-10-05 00:12:46 +0000 |
commit | 22aed6574fca08c483d366a501de089560ba5423 (patch) | |
tree | 4e39ab2696ef748267924a623954b5996717c892 | |
parent | 9173e91787fdce959346fd338c1e668f6d11e18f (diff) |
Remove old diag that alerted the user to a limitation we no longer have:-)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57086 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Driver/RewriteBlocks.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Driver/RewriteBlocks.cpp b/Driver/RewriteBlocks.cpp index b720768221..83fcc03aee 100644 --- a/Driver/RewriteBlocks.cpp +++ b/Driver/RewriteBlocks.cpp @@ -34,7 +34,6 @@ class RewriteBlocks : public ASTConsumer { Diagnostic &Diags; const LangOptions &LangOpts; unsigned RewriteFailedDiag; - unsigned NoNestedBlockCalls; ASTContext *Context; SourceManager *SM; @@ -172,8 +171,6 @@ RewriteBlocks::RewriteBlocks(std::string inFile, std::string outFile, CurMethodDef = 0; RewriteFailedDiag = Diags.getCustomDiagID(Diagnostic::Warning, "rewriting failed"); - NoNestedBlockCalls = Diags.getCustomDiagID(Diagnostic::Warning, - "Rewrite support for closure calls nested within closure blocks is incomplete"); } ASTConsumer *clang::CreateBlockRewriter(const std::string& InFile, |