aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Sema
AgeCommit message (Expand)Author
2011-11-06Make sure when setting AttributesAsWritten of a property that they do notArgyrios Kyrtzidis
2011-11-03Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather t...Douglas Gregor
2011-11-01Enable function call and some overload resolution with parameters of aggregat...Sebastian Redl
2011-11-01Rework the AST for the initializer of a delegating constructor, soDouglas Gregor
2011-10-29Fixed FriendDecl source locations.Abramo Bagnara
2011-10-28Fix for PR9751 to change the behavior of -Wformat warnings. If the formatRichard Trieu
2011-10-27Make the loading of information attached to an IdentifierInfo from anDouglas Gregor
2011-10-27Fix crash on an @interface nested inside @implementation, rdar://10336158Argyrios Kyrtzidis
2011-10-26Pull out conversion on LHS of -> and . into its own function. This happensRichard Smith
2011-10-25Restore r142914 and r142915, now with missing file and apparentJohn McCall
2011-10-25Revert r142914 and r142915, due to possibly missing file.NAKAMURA Takumi
2011-10-25Introduce a placeholder type for "pseudo object"John McCall
2011-10-25Check for unexpanded parameter packs in the name that guards aDouglas Gregor
2011-10-25Implement support for dependent Microsoft __if_exists/__if_not_existsDouglas Gregor
2011-10-24Rework Microsoft __if_exists/__if_not_exists parsing and semanticDouglas Gregor
2011-10-20There's no point in marking a declaration invalid just because itDouglas Gregor
2011-10-19Improve the warning for cv-qualifiers on free functions, from Ahmed Charles!Douglas Gregor
2011-10-19Move static array parameter checks to SemaExpr, per Doug's requestPeter Collingbourne
2011-10-18Make it possible to compute the type of 'this' without capturingDouglas Gregor
2011-10-17Code completion chunks are pod-like.Benjamin Kramer
2011-10-17Teach the ARC compiler to not require __bridge casts whenJohn McCall
2011-10-16Add sema checks for calls to functions taking static array parametersPeter Collingbourne
2011-10-16Drop the Diagnose parameter from Sema::PerformImplicitConversion again and in...Sebastian Redl
2011-10-14Provide half floating point support as a storage only type.Anton Korobeynikov
2011-10-14When declaring an out-of-line template, attempt to rebuild any typesDouglas Gregor
2011-10-14Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations toErik Verbruggen
2011-10-13Extend -Wno-sizeof-array-argument to strncpy and friends.Nico Weber
2011-10-13Allow for annotate attributes after access specifiers. When suchErik Verbruggen
2011-10-11Catch placeholder types in DefaultLvalueConversionJohn McCall
2011-10-11Get rid of ShouldDeleteMoveConstructor.Sean Hunt
2011-10-11Consolidate copy constructor deletion into ShouldDeleteSpecialMember.Sean Hunt
2011-10-11Initial implementation of __atomic_* (everything except __atomic_is_lock_free).Eli Friedman
2011-10-11[Microsoft] If -fms-compatibility, then downgrade missing typename error to w...Francois Pichet
2011-10-11Add typo correction for type names.Kaelyn Uhrain
2011-10-11Move some bool flags out of function parameter lists.Kaelyn Uhrain
2011-10-10objc: Some refactoring of overriding method decl. codeFariborz Jahanian
2011-10-10Parse the initializer for a class member after handling itsDouglas Gregor
2011-10-10Begin work consolidating ShouldDelete* functions.Sean Hunt
2011-10-06Move type-checking for C-style casts in C into the now-misnamed John McCall
2011-10-06Implicitly assume that a ObjC category to an unavailable interface is also un...Argyrios Kyrtzidis
2011-10-06When using an unavailable/deprecated interface Foo inside Foo's interface/imp...Argyrios Kyrtzidis
2011-10-06Support for C1x _Atomic specifier (see testcase). This is primarily being co...Eli Friedman
2011-10-06Added CXAvailability_NotAccessible to indicate that a declaration is availabl...Erik Verbruggen
2011-10-06OpenCL: add a non-standard extension, cl_clang_storage_class_specifiers,Peter Collingbourne
2011-10-05Added a flag to identify resolved overloaded function references.Abramo Bagnara
2011-10-05Refactor the analysis of C++ cast expressions so that evenJohn McCall
2011-10-03Propagate __attribute__((returns_twice)) from C to IL.Rafael Espindola
2011-10-03Pass from the parser the locations of selector identifiers when creatingArgyrios Kyrtzidis
2011-10-03Pass all the locations of the selector identifiers for a message expression f...Argyrios Kyrtzidis
2011-10-02CUDA: diagnose invalid calls across targetsPeter Collingbourne