summaryrefslogtreecommitdiffstats
path: root/lib/Sema/SemaExprMember.cpp
Commit message (Expand)AuthorAgeFilesLines
* [cleanup] Re-sort *all* #include lines with llvm/utils/sort_includes.pyChandler Carruth2015-01-141-1/+1
* Fix diagnostic for static methods referencing fields from using declsReid Kleckner2014-12-181-2/+4
* Perform correct lookup when '__super' is used in class with dependent base.Nikola Smiljanic2014-12-011-1/+1
* Have LookupMemberExprInRecord only call CorrectTypoDelayed, dropping theKaelyn Takata2014-11-111-68/+34
* Replace MemberTypoDiags and MemberExprTypoRecovery with lambdas.Kaelyn Takata2014-11-111-83/+39
* Explicitly exclude keywords from the member validator.Kaelyn Takata2014-11-111-10/+9
* Fix some formatting prior to refactoring the code.Kaelyn Takata2014-11-111-21/+23
* Wire up LookupMemberExpr to use the new TypoExpr.Kaelyn Takata2014-10-271-9/+105
* Pass around CorrectionCandidateCallbacks as unique_ptrs soKaelyn Takata2014-10-271-8/+7
* Hide the concept of diagnostic levels from lex, parse and semaAlp Toker2014-06-151-3/+1
* Refactor: use the DeclarationNameInfo form of BuildMemberReferenceExprRichard Smith2014-05-311-152/+142
* Refactoring. Remove Owned method from Sema.Nikola Smiljanic2014-05-291-57/+39
* Refactoring. Remove release and take methods from ActionResult. Rename takeAs...Nikola Smiljanic2014-05-291-18/+18
* [C++11] Use 'nullptr'. Sema edition.Craig Topper2014-05-261-33/+31
* Initial implementation of -modules-earch-all option, for searching for symbol...John Thompson2014-04-231-2/+4
* vector [Sema]. Check for proper use of 's' char prefixFariborz Jahanian2014-04-031-1/+1
* Cleanup dead assignments reported by scan-buildArnaud A. de Grandmaison2014-03-231-2/+0
* [C++11] Replacing ObjCObjectPointerType iterators qual_begin() and qual_end()...Aaron Ballman2014-03-171-8/+5
* [C++11] Replacing ObjCProtocolDecl iterators protocol_begin() and protocol_en...Aaron Ballman2014-03-131-3/+2
* [C++11] Replacing CXXRecordDecl iterators bases_begin() and bases_end() with ...Aaron Ballman2014-03-131-4/+2
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-121-1/+1
* PR12788: Remove unnecessary and incorrect special case for indirect fields.Richard Smith2014-01-171-8/+1
* It turns out the problem was a bit more wide-spread. Removing a lot of unneed...Aaron Ballman2014-01-031-2/+1
* This patch implements capturing of variables within generic lambdas.Faisal Vali2013-11-071-1/+49
* Fix a C struct diagnostic regression introduced by r187504 (PR17762).Kaelyn Uhrain2013-10-311-0/+5
* Allow CorrectTypo to replace CXXScopeSpecifiers that refer to classes.Kaelyn Uhrain2013-10-191-3/+32
* Refactor all diagnosing of TypoCorrections through a common function, inRichard Smith2013-08-171-25/+12
* Improve the diagnostic experience, including adding recovery, forKaelyn Uhrain2013-07-311-4/+2
* Fix member refs with using decl + anonymous union.Eli Friedman2013-07-161-10/+14
* Allow typo correction to try removing nested name specifiers.Kaelyn Uhrain2013-07-021-1/+3
* address some comments on r183474:Adrian Prantl2013-06-071-4/+6
* Objective-C arc: don't count use of __weakFariborz Jahanian2013-05-211-1/+1
* When typo correction produces an overloaded result when looking up a member,Nick Lewycky2013-05-071-4/+18
* Move parsing of identifiers in MS-style inline assembly intoJohn McCall2013-05-031-17/+34
* Basic support for Microsoft property declarations andJohn McCall2013-04-161-1/+19
* Objective-C: Provide fixit hints when warningFariborz Jahanian2013-04-021-1/+1
* Objective-C: Produce precise diagnostic whenFariborz Jahanian2013-03-281-13/+0
* Objective-C: Provide fixit suggestions when class objectFariborz Jahanian2013-03-281-0/+1
* Objective-C: Issue more precise warning when userFariborz Jahanian2013-03-271-4/+1
* Fix assertion failure when a field is given an address space.Matt Arsenault2013-02-261-8/+8
* objective-C: When implementing custom accessor method forFariborz Jahanian2013-02-141-1/+2
* s/CPlusPlus0x/CPlusPlus11/gRichard Smith2013-01-021-1/+1
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-041-3/+3
* Fix regression in r168477. Use canonical decl when looking for base classRichard Smith2012-11-221-1/+1
* Fix CXXRecordDecl::forallBases to not look through bases which are dependentRichard Smith2012-11-221-36/+26
* From Vassil Vassilev: enable Sema to deal with multiple ExternalSemaSources.Axel Naumann2012-10-181-1/+1
* Fix typo correction of one qualified name to another.David Blaikie2012-10-121-1/+2
* Change (!ptr != 0) to (!ptr) to make the code more readable.Richard Trieu2012-10-121-1/+1
* -Warc-repeated-use-of-weak: check ivars and variables as well.Jordan Rose2012-09-281-3/+18
* Rip out remnants of move semantic emulation and smart pointers in Sema.Benjamin Kramer2012-08-231-3/+3