diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-03-14 22:56:43 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-03-14 22:56:43 +0000 |
commit | 3e56dd4fc94a189505f80c09422470f81ce19ca4 (patch) | |
tree | 6b65ba5a0c3e4c5624378c230cfd2e4ef922b78e /clang/lib/Sema/SemaLookup.cpp | |
parent | 4a89501f820d6472e680f8187e3fe30a6559f140 (diff) | |
download | bcm5719-llvm-3e56dd4fc94a189505f80c09422470f81ce19ca4.tar.gz bcm5719-llvm-3e56dd4fc94a189505f80c09422470f81ce19ca4.zip |
Don't try to typo-correct 'super' in an objc method.
This created 2 issues:
1) Performance issue, since typo-correction with PCH/modules is rather expensive.
2) Correctness issue, since if it managed to "correct" 'super' then bogus compiler errors would
be emitted, like this:
3.m:8:3: error: unknown type name 'super'; did you mean 'super1'?
super.x = 0;
^~~~~
super1
t3.m:5:13: note: 'super1' declared here
typedef int super1;
^
t3.m:8:8: error: expected identifier or '('
super.x = 0;
^
llvm-svn: 177126
Diffstat (limited to 'clang/lib/Sema/SemaLookup.cpp')
-rw-r--r-- | clang/lib/Sema/SemaLookup.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaLookup.cpp b/clang/lib/Sema/SemaLookup.cpp index eae6269ca69..86ddad21f5d 100644 --- a/clang/lib/Sema/SemaLookup.cpp +++ b/clang/lib/Sema/SemaLookup.cpp @@ -3734,6 +3734,16 @@ TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName, if (!ActiveTemplateInstantiations.empty()) return TypoCorrection(); + // Don't try to correct 'super'. + if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier()) + return TypoCorrection(); + + // This is for regression testing. It's disabled by default. + if (Diags.getDiagnosticLevel(diag::warn_spellcheck_initiated, + TypoName.getLoc()) != DiagnosticsEngine::Ignored) + Diag(TypoName.getLoc(), diag::warn_spellcheck_initiated) + << TypoName.getName(); + NamespaceSpecifierSet Namespaces(Context, CurContext, SS); TypoCorrectionConsumer Consumer(*this, Typo); |