| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | After some discussion with Doug, we decided that it made a lot more sense | John McCall | 2011-04-12 | 1 | -179/+200 |
* | More __unknown_anytype work. | John McCall | 2011-04-11 | 1 | -93/+283 |
* | Simplify calling CheckPlaceholderExpr, converge on it in a few places, | John McCall | 2011-04-10 | 1 | -17/+19 |
* | Fix a bunch of major problems with __unknown_anytype and properly test | John McCall | 2011-04-09 | 1 | -39/+114 |
* | PR8369: make __attribute((regparm(0))) work correctly. Original patch by | Eli Friedman | 2011-04-09 | 1 | -1/+1 |
* | Use ExprResult& instead of Expr *& in Sema | John Wiegley | 2011-04-08 | 1 | -636/+818 |
* | In C++ the argument of logical not should always be bool. Added missing impli... | Abramo Bagnara | 2011-04-07 | 1 | -2/+8 |
* | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall | 2011-04-07 | 1 | -35/+185 |
* | Wide Pascal strings should be of type wchar_t[] and not unsigned char[]. | Anders Carlsson | 2011-04-06 | 1 | -2/+4 |
* | When emitting a "too many arguments to function call..." error, also include ... | Ted Kremenek | 2011-04-04 | 1 | -0/+7 |
* | de-sugared when accessing property reference type. | Fariborz Jahanian | 2011-03-30 | 1 | -1/+1 |
* | Don't do the checks of Sema::DiagnoseEqualityWithExtraParens() on type-depend... | Argyrios Kyrtzidis | 2011-03-28 | 1 | -0/+3 |
* | Implements property of reference types. Adding | Fariborz Jahanian | 2011-03-28 | 1 | -0/+17 |
* | refactoring | Anton Yartsev | 2011-03-28 | 1 | -3/+1 |
* | AltiVec vector comparison logic now affect only vectors of fundamental AltiVe... | Anton Yartsev | 2011-03-27 | 1 | -4/+6 |
* | supported: AltiVec vector initialization with a single literal according to P... | Anton Yartsev | 2011-03-27 | 1 | -10/+45 |
* | More coherent diagnostic attempting to assign to a member of a const object r... | Fariborz Jahanian | 2011-03-26 | 1 | -1/+20 |
* | Allow GC qualifiers to be added/removed by conversions from/to void* | John McCall | 2011-03-26 | 1 | -0/+6 |
* | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor | 2011-03-23 | 1 | -18/+42 |
* | Fix an error with the declaration of block parameters that depend | John McCall | 2011-03-22 | 1 | -5/+14 |
* | Clean up our handling of template-ids that resolve down to a single | Douglas Gregor | 2011-03-16 | 1 | -13/+4 |
* | Don't indescriminately print overload candidates when we have invalid | Douglas Gregor | 2011-03-16 | 1 | -4/+0 |
* | Allow function calls to dereferenced member pointers of | Douglas Gregor | 2011-03-16 | 1 | -3/+0 |
* | Don't poke into redefined 'id' type looking for a property | Fariborz Jahanian | 2011-03-15 | 1 | -2/+3 |
* | Forgotten part of previous commit. | Abramo Bagnara | 2011-03-12 | 1 | -2/+2 |
* | Fixes for some more expressions containing function templateids that | Douglas Gregor | 2011-03-12 | 1 | -4/+36 |
* | OpenCL: if double precision floating point constant encountered | Peter Collingbourne | 2011-03-11 | 1 | -3/+8 |
* | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -33/+70 |
* | When comparing a null pointer and something else, always cast the null | John McCall | 2011-03-11 | 1 | -15/+26 |
* | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara | 2011-03-08 | 1 | -1/+1 |
* | Fix my earlier commit to work with escaped newlines and leave breadcrumbs | John McCall | 2011-03-08 | 1 | -3/+2 |
* | Update the check for a NULL macro to use Preprocessor::getSpelling(). | John McCall | 2011-03-08 | 1 | -5/+3 |
* | Much to my surprise, OverloadExprs can also point to function template decls. | Matt Beaumont-Gay | 2011-03-05 | 1 | -9/+12 |
* | Don't warning about shifting by too many bits in dead code. | Ted Kremenek | 2011-03-01 | 1 | -1/+3 |
* | For C++, enhance -Warray-bounds to recursively analyze array subscript access... | Ted Kremenek | 2011-03-01 | 1 | -5/+2 |
* | Don't wanr about "negative shifts" in code that is unreachable. Fixes PR 5544. | Ted Kremenek | 2011-03-01 | 1 | -1/+3 |
* | Implement comparison of C++0x scoped enumeration types. Fixes PR9333. | Douglas Gregor | 2011-03-01 | 1 | -0/+7 |
* | Push nested-name-specifier location information into DeclRefExpr and | Douglas Gregor | 2011-02-28 | 1 | -10/+3 |
* | Push nested-name-specifier source location information into | Douglas Gregor | 2011-02-28 | 1 | -9/+4 |
* | Push nested-name-specifier source location information into | Douglas Gregor | 2011-02-28 | 1 | -3/+9 |
* | Provide a bit saying that a builtin undergoes custom type-checking, then | John McCall | 2011-02-26 | 1 | -11/+23 |
* | Handle value dependent LHS as well as RHS. Test both of these, they | Chandler Carruth | 2011-02-24 | 1 | -1/+1 |
* | Implement a warning for known shift overflows on constant shift | Chandler Carruth | 2011-02-23 | 1 | -16/+56 |
* | Sema: diagnose kernel calls to non-global functions | Peter Collingbourne | 2011-02-23 | 1 | -0/+14 |
* | Enhance Sema::DiagRuntimeBehavior() to delay some diagnostics to see if the r... | Ted Kremenek | 2011-02-23 | 1 | -10/+18 |
* | Issue AnalysisBasedWarnings as part of calling Sema::PopBlockOrFunctionScope(... | Ted Kremenek | 2011-02-23 | 1 | -6/+2 |
* | Update Sema::DiagRuntimeBehavior() to take an optional Stmt* to indicate the ... | Ted Kremenek | 2011-02-23 | 1 | -12/+12 |
* | Clean up the error recovery at the bottom of Sema::LookupMemberExpr. This | Matt Beaumont-Gay | 2011-02-22 | 1 | -104/+103 |
* | Tweaks to C++0x deduced auto type support: | Richard Smith | 2011-02-21 | 1 | -6/+4 |
* | Don't warn about static const integral data members with in-line constant | John McCall | 2011-02-21 | 1 | -2/+5 |