aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Sema
AgeCommit message (Expand)Author
2012-06-19Improve the specification of spellings in Attr.td.Sean Hunt
2012-06-18Handle C++11 attribute namespaces automatically.Sean Hunt
2012-06-15Recover when correcting an unknown type name to a keyword like "struct".Kaelyn Uhrain
2012-06-15Move isCXXSimpleTypeSpecifier from Parser to Sema and tweak it for wider use.Kaelyn Uhrain
2012-06-15Check the parameter lists and return type of both blocks and lambdasDouglas Gregor
2012-06-15Documentation cleanup:James Dennett
2012-06-13More doxygen/documentation cleanups.James Dennett
2012-06-12If parsing a trailing-return-type fails, don't pretend we didn't have one atRichard Smith
2012-06-11Etch out the code path for MS-style inline assembly.Chad Rosier
2012-06-10PR13064: Store whether an in-class initializer uses direct or copyRichard Smith
2012-06-09Reorder ParsedTemplateArg's members to reduce padding on x86_64.Benjamin Kramer
2012-06-08Convert comments to proper Doxygen comments.Dmitri Gribenko
2012-06-07Plug a long standing memory leak in TemplateArgument.Benjamin Kramer
2012-06-06Remove unused private member variables found by clang's new -Wunused-private-...Benjamin Kramer
2012-06-06Introduce -Wunused-private-field. If enabled, this warning detectsDaniel Jasper
2012-06-02Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer
2012-06-01[arcmt] Use CFBridgingRetain/CFBridgingRelease instead of __bridge_retained/_...Argyrios Kyrtzidis
2012-05-27Use the SelectorSet typedef more widely throughout Sema.Benjamin Kramer
2012-05-21Unpack enums in CodeCompletetionResult.Benjamin Kramer
2012-05-20Bitpack CodeCompletionResults.Benjamin Kramer
2012-05-19Inline a trivial clear() method.Benjamin Kramer
2012-05-16Include the correct conversion context locations for condition expressions.David Blaikie
2012-05-16[libclang/AST] Index references of protocols in "@protocol(...)" syntax.Argyrios Kyrtzidis
2012-05-15Fold the six functions checking explicitly-defaulted special member functionsRichard Smith
2012-05-13Refactor all theRafael Espindola
2012-05-13Produce a warning for mismatched section attributes. Completest pr9356.Rafael Espindola
2012-05-11Fix a recent regression with the merging of format attributes.Rafael Espindola
2012-05-10Fix an old (2009) FIXME:Rafael Espindola
2012-05-09[AST/libclang] Speed up clang_getOverriddenCursors() considerably by reservin...Argyrios Kyrtzidis
2012-05-07When we suppress an error due to SFINAE, stash the diagnostic away with theRichard Smith
2012-05-07Change how we suppress access control in explicit instantiationsJohn McCall
2012-05-07There is no reason for these methods to be out-of-line.John McCall
2012-05-07Refactor DelayedDiagnostics so that it keeps diagnostics inJohn McCall
2012-05-04Move Sema::VerifyIntegerConstantExpression() andDouglas Gregor
2012-05-04Move Sema::RequireNonAbstractType() off of PartialDiagnostic.Douglas Gregor
2012-05-04Switch RequireLiteralType() off of PartialDiagnostic.Douglas Gregor
2012-05-04Move Sema::RequireCompleteType() and Sema::RequireCompleteExprType()Douglas Gregor
2012-05-03Add -Wimplicit-fallthrough warning flag, which warns on fallthrough betweenRichard Smith
2012-05-02Revert most of r154844, which was disabled in r155975. Keep around theRichard Smith
2012-05-02Introduce the notion of an attribute that has no direct representationDouglas Gregor
2012-05-01Eliminate Sema::CompareMethodParamsInBaseAndSuper() entirely, byDouglas Gregor
2012-05-01The semantic checking that verifies whether an Objective-C methodDouglas Gregor
2012-04-30Add FixItHint for -Wnull-conversion to initialize with an appropriate literal.David Blaikie
2012-04-26PR12660: Don't crash when initializing a const reference from a braced init listRichard Smith
2012-04-25Add an error message with fixit hint for changing '.' to '->'.Kaelyn Uhrain
2012-04-21Fix regression in r154844. If necessary, defer computing adjusted destructorRichard Smith
2012-04-20Update doxygen comment to match changes in r155218.Richard Smith
2012-04-20Fix bug where a class's (deleted) copy constructor would be implicitly given aRichard Smith
2012-04-19objective-arc: Retune my previous patch so warningFariborz Jahanian
2012-04-19objective-c arc: Issue warning under -Wreceiver-is-weak Fariborz Jahanian