| Commit message (Expand) | Author | Age | Files | Lines |
* | -Wc++98-compat and -Wc++98-compat-pedantic warnings for Sema, part 1. | Richard Smith | 2011-10-18 | 1 | -11/+12 |
* | Make it possible to compute the type of 'this' without capturing | Douglas Gregor | 2011-10-18 | 1 | -6/+8 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -0/+6 |
* | Teach __has_nothrow_assign not to complain about access (GCC and EDG | Douglas Gregor | 2011-10-12 | 1 | -1/+5 |
* | Catch placeholder types in DefaultLvalueConversion | John McCall | 2011-10-11 | 1 | -0/+6 |
* | When performing a user-defined conversion via a constructor, be sure | Douglas Gregor | 2011-10-10 | 1 | -6/+10 |
* | Added a flag to identify resolved overloaded function references. | Abramo Bagnara | 2011-10-05 | 1 | -4/+17 |
* | Refactor the analysis of C++ cast expressions so that even | John McCall | 2011-10-05 | 1 | -19/+2 |
* | Get rid of useless helper Sema::CastCategory. | Eli Friedman | 2011-09-27 | 1 | -6/+5 |
* | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -6/+0 |
* | Add a new warning to -Wliteral-conversion to catch cases where a string literal | Richard Trieu | 2011-09-23 | 1 | -1/+1 |
* | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -7/+7 |
* | ArrayRef-ifying Function/BlockDecl's setParams | David Blaikie | 2011-09-21 | 1 | -1/+1 |
* | Enforce access control for conversion operators used in contextual | John McCall | 2011-09-21 | 1 | -1/+3 |
* | Finish the lex->LHS and rex->RHS cleanup in Sema. | Richard Trieu | 2011-09-15 | 1 | -27/+28 |
* | Rename the ARC cast kinds to start with "ARC". | John McCall | 2011-09-10 | 1 | -2/+2 |
* | When converting a block pointer to an Objective-C pointer type, extend | John McCall | 2011-09-10 | 1 | -0/+9 |
* | Code formatting; no functionality change. | John McCall | 2011-09-09 | 1 | -9/+9 |
* | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor | 2011-09-02 | 1 | -1/+1 |
* | Perform array bounds checking in more situations and properly handle special | Kaelyn Uhrain | 2011-08-05 | 1 | -3/+0 |
* | In ARC, don't try to reclaim the result of a call to performSelector | John McCall | 2011-08-03 | 1 | -5/+8 |
* | Add */& mismatch fixit generation to the Sema::DiagnoseAssignmentResult(). | Anna Zaks | 2011-07-28 | 1 | -2/+2 |
* | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -6/+14 |
* | Re-fix r136172 so it isn't an error; apparently, some people are fond of thei... | Eli Friedman | 2011-07-26 | 1 | -16/+13 |
* | Diagnose trying to delete a pointer to an abstract class with a non-virtual d... | Eli Friedman | 2011-07-26 | 1 | -1/+13 |
* | A couple minor issues with Sema for delete: | Eli Friedman | 2011-07-26 | 1 | -22/+28 |
* | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -10/+10 |
* | Enforce access control for the destructor in a new[] expression and mark | John McCall | 2011-07-13 | 1 | -1/+11 |
* | objc++-arc: more diagnosis of converting a weak-unavailable | Fariborz Jahanian | 2011-07-08 | 1 | -2/+14 |
* | In ARC, reclaim all return values of retainable type, not just those | John McCall | 2011-07-07 | 1 | -7/+6 |
* | Properly implement the scope restriction on the NRVO for | Douglas Gregor | 2011-07-06 | 1 | -10/+64 |
* | Perform lvalue-to-rvalue conversions on both operands of ->* | John McCall | 2011-06-30 | 1 | -0/+14 |
* | Introduce Declarator::CXXNewContext and remove 'AutoAllowedInTypeName' parameter | Argyrios Kyrtzidis | 2011-06-28 | 1 | -2/+1 |
* | Centralize all checks for a C++ tag definition inside a typename in | Argyrios Kyrtzidis | 2011-06-28 | 1 | -1/+1 |
* | Fix PR10204 in a better way. | John McCall | 2011-06-27 | 1 | -1/+10 |
* | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -1/+1 |
* | Fix Sema::CheckVectorOperands so that it doesn't try to insert a cast express... | Eli Friedman | 2011-06-23 | 1 | -1/+1 |
* | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -70/+238 |
* | Implement support for C++11 in-class initialization of non-static data members. | Richard Smith | 2011-06-11 | 1 | -30/+43 |
* | Fix order of operands for the warning about incompatible Objective-C | Douglas Gregor | 2011-06-11 | 1 | -1/+1 |
* | Implement Objective-C Related Result Type semantics. | Douglas Gregor | 2011-06-11 | 1 | -0/+4 |
* | Fix a bunch more notes that were emitted even when the diagnostic they | Chandler Carruth | 2011-06-08 | 1 | -6/+9 |
* | Remove all references to InitializationSequence::FailedSequence from outside ... | Sebastian Redl | 2011-06-05 | 1 | -3/+3 |
* | Add new warning that warns when invoking 'delete' on a polymorphic, non-final... | Argyrios Kyrtzidis | 2011-05-24 | 1 | -0/+14 |
* | The array-size operand to a new-expression is not necessarily a size_t. | John McCall | 2011-05-15 | 1 | -2/+2 |
* | Implement the __is_trivially_copyable type trait | Alexis Hunt | 2011-05-13 | 1 | -0/+3 |
* | Implement defaulting of destructors. | Alexis Hunt | 2011-05-12 | 1 | -23/+39 |
* | Hrm | Alexis Hunt | 2011-05-12 | 1 | -18/+21 |
* | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -4/+4 |
* | Look at all the record redeclaration when looking for a uuid attribute. | Francois Pichet | 2011-05-08 | 1 | -4/+5 |