Age | Commit message (Expand) | Author |
2010-04-09 | Remove all "used" static functions *after* we have performed all of | Douglas Gregor |
2010-03-25 | Teach the diagnostic engine to provide more detailed information about | Douglas Gregor |
2010-03-23 | Only perform CFG-based warnings on 'static inline' functions that | Ted Kremenek |
2010-03-19 | Remove the capture, serialization, and deserialization of comment | Douglas Gregor |
2010-03-01 | Keep an explicit stack of function and block scopes, each element of | Douglas Gregor |
2010-03-01 | Implement jump checking for initialized c++ variables, implementing | Chris Lattner |
2010-02-12 | Implementing unused function warning. | Tanya Lattner |
2010-02-09 | Move the diagnostic argument formatting function out of Sema and make | Douglas Gregor |
2010-02-02 | Add a stop gap to Sema::CorrectTypo() to correct only up to 20 typos. | Ted Kremenek |
2010-01-31 | Add VarDecl::isThisDeclarationADefinition(), which properly encapsulates the ... | Sebastian Redl |
2010-01-13 | Don't a.k.a. through the primary typedef of an anonymous tag decl. | John McCall |
2010-01-10 | Generalize target weirdness handling having proper layering in mind: | Anton Korobeynikov |
2010-01-04 | Move the -Wconversion logic into SemaChecking.cpp. There's a fair amount of | John McCall |
2009-12-29 | Get rid of FixedWidthIntType, as suggested by Chris and Eli. | Anders Carlsson |
2009-12-19 | Kill off PreDeclaratorDC. | John McCall |
2009-12-07 | Rework how virtual member functions are marked. If a class has no key functio... | Anders Carlsson |
2009-12-07 | DeclaratorInfo -> TypeSourceInfo. Makes an effort to rename associated varia... | John McCall |
2009-11-26 | Refactor our handling of expression evaluation contexts, so that Sema | Douglas Gregor |
2009-11-25 | Allow user re-definition of SEL as well as accessing its fields. | Fariborz Jahanian |
2009-11-23 | Make 'SEL' pointer to a builtin type and not an | Fariborz Jahanian |
2009-11-21 | This patch implements objective-c's 'SEL' type as a built-in | Fariborz Jahanian |
2009-11-18 | Do not enter forward class 'Protocol' in decl context. | Fariborz Jahanian |
2009-11-13 | Rework Sema code completion interface. | Daniel Dunbar |
2009-11-11 | Fix PR 5422: handle lvalue results when evaluating 'based' ptrtoints as part of | John McCall |
2009-11-11 | Improve diagnostics when a default template argument does not match | Douglas Gregor |
2009-11-07 | Support -Wshorten-64-to-32 for integer types only, which seems to satisfy the | John McCall |
2009-11-07 | Improve -Wconversion by permitting binary operations on values of the target | John McCall |
2009-11-07 | Implement -Wconversion. Off by default, in the non-gcc group. There's | John McCall |
2009-11-04 | Change our basic strategy for avoiding deprecation warnings when the decl use | John McCall |
2009-10-24 | Preserve type source information in TypedefDecls. Preserve it across | John McCall |
2009-10-20 | Implement PR5242: don't desugar a type more than once in a diagnostic. This | Chris Lattner |
2009-10-20 | teach FormatDiagnostic to aggregate previously formatted arguments and | Chris Lattner |
2009-10-20 | code cleanup, convert if tree to switch etc. | Chris Lattner |
2009-10-18 | When performing template-substitution into a type, don't just replace the | John McCall |
2009-10-16 | Remove the ConstantArrayType subtypes. This information is preserved in the | John McCall |
2009-10-13 | Improve diagnostics when the parser encounters a declarator with an | Douglas Gregor |
2009-10-13 | Unify our diagnostic printing for errors of the form, "we didn't like | Douglas Gregor |
2009-09-29 | Desugaring optimizations. Add single-step desugaring methods to all | John McCall |
2009-09-24 | Refactor the representation of qualifiers to bring ExtQualType out of the | John McCall |
2009-09-17 | Initial implementation of a code-completion interface in Clang. In | Douglas Gregor |
2009-09-15 | When implicitly declaring operators new, new[], delete, and delete[], | Douglas Gregor |
2009-09-15 | Only reuse an already existing ImplicitCastExpr if the cast kinds are the same. | Anders Carlsson |
2009-09-15 | Get rid of the CastInfo struct. | Anders Carlsson |
2009-09-11 | When stringizing a NamedDecl for a diagnostic, treat the template | John McCall |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-08 | Fix PR4922, where Sema would complete tentative definitions in nondeterminstic | Chris Lattner |
2009-09-05 | Start emitting ElaboratedTypes in C++ mode. Support the effort in various | John McCall |
2009-08-30 | Improve missing error messages as suggested by Doug. | Anders Carlsson |
2009-08-30 | Improve diagnostics for missing members. This renames the err_typecheck_no_me... | Anders Carlsson |
2009-08-26 | Add a RequireCompleteType variant that takes a PartialDiagnostic. The old Req... | Anders Carlsson |