aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Sema/Sema.h
AgeCommit message (Expand)Author
2013-04-24Objective-C: When reporting on missing property accessor implementation inFariborz Jahanian
2013-04-22[ms-inline asm] Refactor/clean up the SemaLookup interface. No functionalChad Rosier
2013-04-17Fix PR15291: noreturn adjustment in overload resolution for function template...Douglas Gregor
2013-04-17Enhance the ObjC global method pool to record whether there were 0, 1, or >= ...Argyrios Kyrtzidis
2013-04-16Sema for Captured StatementsTareq A. Siraj
2013-04-16Basic support for Microsoft property declarations andJohn McCall
2013-04-15Remove hasExternalLinkageUncached.Rafael Espindola
2013-04-10Add support for computing the exception specification for an inheritingRichard Smith
2013-04-04Be sure to check ARC conventions on the implicit method declarationsJohn McCall
2013-04-03Add 178663 back.Rafael Espindola
2013-04-03Revert 178663.Rafael Espindola
2013-04-03Don't compute a patched/semantic storage class.Rafael Espindola
2013-04-02Add -Wstatic-local-in-inline, which warns about using a static localJohn McCall
2013-04-01Only merge down a variable type if the previous declaration wasJohn McCall
2013-03-28Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar...Richard Smith
2013-03-28Fold together the two implementations of 6.7.3p2 in SemaType. Fix two bugs, e...Richard Smith
2013-03-26Implement special-case name lookup for inheriting constructors: memberRichard Smith
2013-03-22Fix DeclRefExpr::getFoundDecl() for usages by reference.Daniel Jasper
2013-03-22OpenMP threadprivate directive parsing and semantic analysisAlexey Bataev
2013-03-22Fix a crash-on-valid where a block capture copy expression wasJohn McCall
2013-03-19Add a clarifying note when a return statement is rejected becauseJohn McCall
2013-03-18Add missing diagnostic for a nested-name-specifier on a free-standing type de...Richard Smith
2013-03-18Bring inheriting constructor implementation up-to-date with current defectRichard Smith
2013-03-14Don't try to typo-correct 'super' in an objc method.Argyrios Kyrtzidis
2013-03-14Avoid computing the linkage too early. Don't invalidate it.Rafael Espindola
2013-03-08Sema: Preserve attributes on parameters in instantiated function templates.Jordan Rose
2013-03-08ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType.Jordan Rose
2013-03-04Centralize and refine the __unknown_anytype argument rulesJohn McCall
2013-03-02Process #pragma weak only after we know the linkage of the function or variableRafael Espindola
2013-02-23Shrink SmallPtrSet. It gets swapped a lot which copies the whole small part.Benjamin Kramer
2013-02-22[Sema] Semantic analysis for empty-declaration and attribute-declaration.Michael Han
2013-02-22Handle alignas(foo...) pack expansions.Richard Smith
2013-02-22Implement C++11 [dcl.align]p6-p8, and C11 6.7.5/7. This had to be split out ofRichard Smith
2013-02-20Include llvm::Optional in clang/Basic/LLVM.hDavid Blaikie
2013-02-20Process and handle attributes on conditions and for loop variables. Process andRichard Smith
2013-02-20Add a new 'type_visibility' attribute to allow users toJohn McCall
2013-02-19PR15300: Support C++11 attributes on base-specifiers. We don't support any suchRichard Smith
2013-02-14objective-C: When implementing custom accessor method forFariborz Jahanian
2013-02-05Add some missing diagnostics for C++11 narrowing conversions.Richard Smith
2013-02-02This patch makes "&Cls::purevfn" not an odr use. This isn't what the standardNick Lewycky
2013-02-01Add a new -Wundefined-inline warning for inline functions which are used but notNick Lewycky
2013-02-01Implement [dcl.align]p5 and C11 6.7.5/4: alignas cannot underalign.Richard Smith
2013-02-01[Sema][Attr]Fix alignment attribute printing.Michael Han
2013-01-31Improve 'failed template argument deduction' diagnostic for the case where weRichard Smith
2013-01-31Remove elements from Sema.UndefinedInternals as functions are defined. AlsoNick Lewycky
2013-01-29Propagate the spelling list index for an attribute across template instantiat...Richard Smith
2013-01-26Preserve Sema::UndefinedInternals across PCH boundaries. FixesNick Lewycky
2013-01-24Patch to check for integer overflow. It has beenFariborz Jahanian
2013-01-24PR14922: when printing an attribute, use the real syntax of the attribute (GN...Michael Han
2013-01-23Use 'const Decl *' throughout code completion in SemaDmitri Gribenko