| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use ExprResult& instead of Expr *& in Sema | John Wiegley | 2011-04-08 | 1 | -233/+282 |
| * | In C++ the argument of logical not should always be bool. Added missing impli... | Abramo Bagnara | 2011-04-07 | 1 | -13/+3 |
| * | Make ChainedIncludesSource an ExternalSemaSource, otherwise initialization of... | Sebastian Redl | 2011-03-31 | 1 | -1/+1 |
| * | Support for Transparent unions used as overloadable | Fariborz Jahanian | 2011-03-23 | 1 | -0/+9 |
| * | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor | 2011-03-23 | 1 | -3/+3 |
| * | Fix an objc++ diagnostic initializing objc pointers. | Fariborz Jahanian | 2011-03-21 | 1 | -4/+10 |
| * | Fix PR9488: 'auto' type substitution can fail (for instance, if it creates a ... | Richard Smith | 2011-03-17 | 1 | -4/+6 |
| * | Clean up our handling of template-ids that resolve down to a single | Douglas Gregor | 2011-03-16 | 1 | -7/+10 |
| * | Make deallocation functions implicitly noexcept in C++0x. | Sebastian Redl | 2011-03-14 | 1 | -6/+24 |
| * | -fwritable-strings should silence warnings about the deprecated string | Douglas Gregor | 2011-03-14 | 1 | -1/+2 |
| * | Instead of storing an ASTContext* in FunctionProtoTypes with computed noexcep... | Sebastian Redl | 2011-03-13 | 1 | -3/+3 |
| * | Propagate the new exception information to FunctionProtoType. | Sebastian Redl | 2011-03-12 | 1 | -5/+7 |
| * | Fixed InnerLocStart. | Abramo Bagnara | 2011-03-09 | 1 | -2/+2 |
| * | Fixed source range for all DeclaratorDecl's. | Abramo Bagnara | 2011-03-08 | 1 | -4/+5 |
| * | Removed trailing whitespace as a test commit | John Wiegley | 2011-03-08 | 1 | -1/+1 |
| * | Produce a diagnostic for unused overloaded expressions, from Faisal Vali! | Douglas Gregor | 2011-03-07 | 1 | -0/+23 |
| * | Reinstate r127112, "Propagate new-style exception spec information to ExtProt... | Sebastian Redl | 2011-03-06 | 1 | -1/+1 |
| * | Revert r127112, "Propagate new-style exception spec information to ExtProtoIn... | NAKAMURA Takumi | 2011-03-06 | 1 | -1/+1 |
| * | Propagate new-style exception spec information to ExtProtoInfo. | Sebastian Redl | 2011-03-05 | 1 | -1/+1 |
| * | When clearing a LookupResult structure, clear out the naming class, | Douglas Gregor | 2011-03-04 | 1 | -3/+13 |
| * | Push nested-name-specifier source-location information into dependent | Douglas Gregor | 2011-03-02 | 1 | -2/+4 |
| * | For C++, enhance -Warray-bounds to recursively analyze array subscript access... | Ted Kremenek | 2011-03-01 | 1 | -2/+1 |
| * | Teach Sema::CheckTypenameType to use nested-name-specifiers with | Douglas Gregor | 2011-02-28 | 1 | -13/+5 |
| * | Push nested-name-specifier location information into DeclRefExpr and | Douglas Gregor | 2011-02-28 | 1 | -1/+2 |
| * | Add a -fcxx-exceptions flag to the frontend, which can be used to enable | Anders Carlsson | 2011-02-28 | 1 | -1/+1 |
| * | Sprinkle optional text of the "unavailable' attribute | Fariborz Jahanian | 2011-02-25 | 1 | -1/+4 |
| * | Remove the FIXME I introduced last night, and pull the logic for | Chandler Carruth | 2011-02-25 | 1 | -0/+3 |
| * | Push nested-name-specifier source-location information into | Douglas Gregor | 2011-02-25 | 1 | -2/+2 |
| * | Switch a few CXXScopeSpec::MakeTrivial() calls over to appropriate | Douglas Gregor | 2011-02-25 | 1 | -1/+1 |
| * | Formatting, etc. | John McCall | 2011-02-25 | 1 | -17/+17 |
| * | Retain complete source-location information for C++ | Douglas Gregor | 2011-02-24 | 1 | -1/+1 |
| * | Tweak the CXXScopeSpec API a bit, so that we require the | Douglas Gregor | 2011-02-24 | 1 | -1/+1 |
| * | Don't give an error for 'try' and 'throw' if they occur in system headers. | Anders Carlsson | 2011-02-23 | 1 | -1/+3 |
| * | Implement the C++0x deduced 'auto' feature. | Richard Smith | 2011-02-20 | 1 | -6/+34 |
| * | There's no need to return early if we encounter a try/throw and exceptions ar... | Anders Carlsson | 2011-02-19 | 1 | -1/+1 |
| * | Disallow try/catch/throw when exceptions are disabled. | Anders Carlsson | 2011-02-19 | 1 | -0/+3 |
| * | Fix a missed case in the NULL operand to conditional operator | Chandler Carruth | 2011-02-19 | 1 | -0/+4 |
| * | Initial steps to improve diagnostics when there is a NULL and | Chandler Carruth | 2011-02-18 | 1 | -6/+14 |
| * | Enhance the array bounds checking to work for several other constructs, | Chandler Carruth | 2011-02-17 | 1 | -0/+4 |
| * | Change the representation of GNU ?: expressions to use a different expression | John McCall | 2011-02-17 | 1 | -13/+4 |
| * | Implement objective-c++'s block pointer type matching involving | Fariborz Jahanian | 2011-02-12 | 1 | -1/+6 |
| * | Support for objextive-c++ use of property-dot syntax as receiver | Fariborz Jahanian | 2011-02-08 | 1 | -2/+2 |
| * | Sema::MaybeBindToTemporary() shouldn't treat any expression returning | Douglas Gregor | 2011-02-08 | 1 | -11/+3 |
| * | More capturing of 'this': implicit member expressions. Getting that | John McCall | 2011-02-03 | 1 | -10/+24 |
| * | An insomniac stab at making block declarations list the variables they close | John McCall | 2011-02-02 | 1 | -7/+17 |
| * | Implement access checking for the "delete" operator. Fixes PR9050, | Douglas Gregor | 2011-02-01 | 1 | -1/+9 |
| * | Fix some corner cases in the __is_base_of logic. | John McCall | 2011-01-28 | 1 | -20/+27 |
| * | Give OpaqueValueExpr a source location, because its source location | Douglas Gregor | 2011-01-28 | 1 | -1/+1 |
| * | Teach the evaluation of the __is_convertible_to trait to translate | Douglas Gregor | 2011-01-27 | 1 | -4/+5 |
| * | Document some serious badness in our evaluation of the type traits: we need t... | Douglas Gregor | 2011-01-27 | 1 | -0/+2 |