Age | Commit message (Expand) | Author |
2009-11-09 | For array pointee type, get its cvr qualifier from | Fariborz Jahanian |
2009-11-09 | Fix build after r86579. | Benjamin Kramer |
2009-11-09 | Make sure that we instantiate default function arguments for an | Douglas Gregor |
2009-11-09 | Add additional note to mark the cause of synthesized constructors. Mark | Eli Friedman |
2009-11-09 | Improve instantiation of default template arguments for nested | Douglas Gregor |
2009-11-09 | Add support for cdecl attribute. (As far as I know, it doesn't affect CodeGen | Eli Friedman |
2009-11-09 | When transforming an InitListExpr, if we already computed a non-dependent typ... | Douglas Gregor |
2009-11-09 | Add hack to make the given testcase work. As far as I can tell, this change is | Eli Friedman |
2009-11-09 | Remove a useless variable that got left behind. | Eli Friedman |
2009-11-09 | Unify the codepaths used to verify base and member initializers for explicitly | Eli Friedman |
2009-11-08 | Fix use-after-free bug. | Eli Friedman |
2009-11-08 | Special-case default argument expression in instantiation. This should fix PR... | Sebastian Redl |
2009-11-08 | When checking the namespace of a redeclaration or definition, look through li... | Sebastian Redl |
2009-11-08 | Don't reprocess non-dependent initializers of non-dependent VarDecls. Fixes P... | Sebastian Redl |
2009-11-08 | Test commit - minor terminology change to my recent patch suggested by John M... | Sean Hunt |
2009-11-08 | Always make sure we're using an unqualified type when building a | Douglas Gregor |
2009-11-07 | Patch to gives an error that at least points users in the direction of the er... | Fariborz Jahanian |
2009-11-07 | Cope with calls to operator() templates. Fixes PR5419. | 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 | Don't treat variables with non-trivial ctors or dtors as unused. Fixes PR5407. | Anders Carlsson |
2009-11-07 | Cleanup, no functionality change. | Anders Carlsson |
2009-11-07 | When instantiating a field decl, make sure to clone its attributes. With this... | Anders Carlsson |
2009-11-07 | Implement -Wconversion. Off by default, in the non-gcc group. There's | John McCall |
2009-11-07 | Add basic code completion support for ObjC messages. | Steve Naroff |
2009-11-07 | Make sure isCopyAssignment is only true for actual copy assignment operators, | Eli Friedman |
2009-11-07 | Various improvements to Clang's code-completion infrastructure: | Douglas Gregor |
2009-11-06 | Since default writable attribute is 'assign', allow | Fariborz Jahanian |
2009-11-06 | Don't warn -Wsign-compare if we're in an unevaluated context, and fixed | John McCall |
2009-11-06 | compare.c also needs a target triple now, and improve some comments while we're | John McCall |
2009-11-06 | Improve the -Wsign-compare heuristics: | John McCall |
2009-11-06 | Rework the fix-it hint for code like | Douglas Gregor |
2009-11-06 | If we have a C-style cast, functional cast, or a static_cast to a | Douglas Gregor |
2009-11-06 | When we encounter a derived-to-base conversion when performing an | Douglas Gregor |
2009-11-06 | Minor cleanup of my last patch. | Fariborz Jahanian |
2009-11-06 | This patch implements Sema for clause 13.3.3.1p4. | Fariborz Jahanian |
2009-11-06 | Make sure that EnumConstantDecls always get a type, even when they have type-... | Douglas Gregor |
2009-11-05 | The signed/unsigned checker should not warn for value-dependent expressions, ... | Sebastian Redl |
2009-11-05 | Be a little more careful when trying to extract a TypeDecl from a enum/class/... | Douglas Gregor |
2009-11-05 | Don't allow definitions of array variables without some size information in C... | Sebastian Redl |
2009-11-05 | Eliminate some false positives due to a thinko in the "'blah' is | Douglas Gregor |
2009-11-05 | When collecting types for built-in candidates, make arrays decay to pointers.... | Sebastian Redl |
2009-11-05 | Allow the element type of arrays to be incomplete in C++. | Sebastian Redl |
2009-11-05 | Fixed two places where we needed to force completion of a type | Douglas Gregor |
2009-11-05 | Implement the conditional-operator part of -Wsign-compare. Turn | John McCall |
2009-11-05 | When instantiating a UnaryOperator, allow the resulting expression to | Douglas Gregor |
2009-11-05 | Implement -Wsign-compare, or at least the actual comparison part of it. | John McCall |
2009-11-05 | Make sure to grab CVR qualifiers from the canonical type. ARGH! | Douglas Gregor |
2009-11-04 | When instantiating a MemberExpr, be sure to instantiate the | Douglas Gregor |
2009-11-04 | Comments, formatting. Based on patch by Brandon Pearcy! | John McCall |