| Commit message (Expand) | Author | Age | Files | Lines |
| * | Rename Diagnostic to DiagnosticsEngine as per issue 5397 | David Blaikie | 2011-09-25 | 1 | -2/+3 |
| * | Add a special note for overload resolution when an initializer list argument | Sebastian Redl | 2011-09-24 | 1 | -0/+11 |
| * | Give InitListChecker a verification-only mode, where it neither emits diagnos... | Sebastian Redl | 2011-09-24 | 1 | -15/+19 |
| * | Removing a bunch of dead returns/breaks after llvm_unreachables. | David Blaikie | 2011-09-23 | 1 | -2/+0 |
| * | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -6/+7 |
| * | Enforce access control for conversion operators used in contextual | John McCall | 2011-09-21 | 1 | -5/+4 |
| * | In Microsoft mode(-fms-compatibility), prefer an integral conversion to a flo... | Francois Pichet | 2011-09-18 | 1 | -0/+19 |
| * | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -3/+3 |
| * | Silence "end of non-void function" warnings with llvm_unreachable and add an ... | Benjamin Kramer | 2011-09-10 | 1 | -2/+5 |
| * | Fix a -Wreturn-type warning due to this field not explicitly having the | Chandler Carruth | 2011-09-10 | 1 | -1/+1 |
| * | Add smarter sorting of overload candidates that failed template deduction. | Kaelyn Uhrain | 2011-09-09 | 1 | -0/+37 |
| * | Contextually converting to 'id' is not a useful operation. Contextually | John McCall | 2011-09-09 | 1 | -14/+46 |
| * | Give conversions of block pointers to ObjC pointers a different cast kind | John McCall | 2011-09-09 | 1 | -6/+13 |
| * | In Microsoft mode, if we are inside a template class member function and we c... | Francois Pichet | 2011-09-07 | 1 | -1/+14 |
| * | Be sure to emit lvalue-to-rvalue casts for loads from x-values. | John McCall | 2011-08-30 | 1 | -4/+4 |
| * | Make sure we don't crash printing builtin candidates for overloads of deleted... | Eli Friedman | 2011-08-26 | 1 | -4/+5 |
| * | Teach reference initialization from the result of a user-defined | Douglas Gregor | 2011-08-15 | 1 | -5/+5 |
| * | Have the typo correction in DiagnoseEmptyLookup properly handle template | Kaelyn Uhrain | 2011-08-05 | 1 | -1/+1 |
| * | Improve overloaded function handling in the typo correction code. | Kaelyn Uhrain | 2011-08-03 | 1 | -1/+2 |
| * | Refactor the */& mismatch fixit generation out of SemaOverload and provide a ... | Anna Zaks | 2011-07-28 | 1 | -113/+16 |
| * | Tests for explicit conversion operators, along with a fix to avoid | Douglas Gregor | 2011-07-23 | 1 | -12/+15 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -10/+10 |
| * | kill a FIXME in IsIntegralPromotion | David Majnemer | 2011-07-22 | 1 | -4/+1 |
| * | Addressing code review comments for commit 135509 - Add FixItHints in case a ... | Anna Zaks | 2011-07-21 | 1 | -8/+32 |
| * | arc-objc++: Issue an arc specific diagnostic when overload resolution | Fariborz Jahanian | 2011-07-20 | 1 | -1/+14 |
| * | Add FixItHints in case a C++ function call is missing * or & operators on one... | Anna Zaks | 2011-07-19 | 1 | -6/+125 |
| * | Store bracket locations for array subscript expressions, from Erik Verbruggen! | Douglas Gregor | 2011-07-15 | 1 | -3/+8 |
| * | PR8800: When building a conversion to A& using a member operatorA&(), do not ... | Richard Smith | 2011-07-13 | 1 | -4/+4 |
| * | Fix missing braces around two statements that were intended to be part | Chandler Carruth | 2011-06-27 | 1 | -1/+2 |
| * | Fix PR10187: when diagnosing a two-phase-lookup-related failure, don't assert... | Richard Smith | 2011-06-26 | 1 | -8/+12 |
| * | Rename objc_lifetime -> objc_ownership, and modify diagnostics to talk about ... | Argyrios Kyrtzidis | 2011-06-24 | 1 | -1/+1 |
| * | Allow unavailable function calls inside unavailable functions in C++/ObjC++ a... | Argyrios Kyrtzidis | 2011-06-23 | 1 | -2/+13 |
| * | Accept no-return stripping conversions for pointer type arguments after | Chandler Carruth | 2011-06-18 | 1 | -6/+6 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -54/+244 |
| * | Fix a regression in the two-phase lookup diagnostics that switching the | Chandler Carruth | 2011-06-08 | 1 | -0/+3 |
| * | Richard Smith was correct about how the sets should be computed for | Chandler Carruth | 2011-06-05 | 1 | -11/+8 |
| * | Fix PR10053: Improve diagnostics and error recovery for code which some compi... | Richard Smith | 2011-06-05 | 1 | -8/+140 |
| * | Identity and non-identity standard conversion sequences can be | Douglas Gregor | 2011-06-05 | 1 | -6/+4 |
| * | Update our diagnostics to properly account for move operations. | Alexis Hunt | 2011-05-25 | 1 | -2/+14 |
| * | Audit and finish the implementation of C++0x nullptr, fixing two | Douglas Gregor | 2011-05-21 | 1 | -2/+21 |
| * | Allow implicit conversion from function pointer to void* in Microsoft mode. | Francois Pichet | 2011-05-08 | 1 | -0/+9 |
| * | Relax the conversion rules for Objective-C GC qualifiers a | Douglas Gregor | 2011-05-08 | 1 | -0/+7 |
| * | Warn when trying to call a pure virtual member function in a class from the c... | Anders Carlsson | 2011-05-06 | 1 | -0/+13 |
| * | With invalid overloaded operators, we can get into funny cases where | Douglas Gregor | 2011-05-05 | 1 | -0/+9 |
| * | Add an optional field attached to a DeclRefExpr which points back to the | Chandler Carruth | 2011-05-01 | 1 | -0/+2 |
| * | When determining whether two types are reference-compatible, check | Douglas Gregor | 2011-04-28 | 1 | -1/+6 |
| * | FixOverloadedFunctionReference needs to rebuild member accesses of | John McCall | 2011-04-27 | 1 | -4/+11 |
| * | When comparing Objective-C pointers during overload resolution to | Douglas Gregor | 2011-04-27 | 1 | -12/+17 |
| * | When computing Objective-C pointer conversions in C++, retain | Douglas Gregor | 2011-04-26 | 1 | -5/+39 |
| * | Make yet another placeholder type, this one marking that an expression is a b... | John McCall | 2011-04-26 | 1 | -52/+124 |