| Commit message (Expand) | Author | Age | Files | Lines |
* | Teach the ARC compiler to not require __bridge casts when | John McCall | 2011-10-17 | 1 | -38/+120 |
* | Implement overload resolution from init lists for scalar parameter types. | Sebastian Redl | 2011-10-16 | 1 | -0/+86 |
* | Drop the Diagnose parameter from Sema::PerformImplicitConversion again and in... | Sebastian Redl | 2011-10-16 | 1 | -8/+3 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -2/+7 |
* | Attempt to fix Windows buildbot, round 2. | Eli Friedman | 2011-10-14 | 1 | -1/+1 |
* | Attempt to fix buildbot failure on Windows. | Eli Friedman | 2011-10-14 | 1 | -1/+2 |
* | Change operator<< for raw_ostream and NamedDecl to take a reference instead o... | Benjamin Kramer | 2011-10-14 | 1 | -1/+1 |
* | Catch placeholder types in DefaultLvalueConversion | John McCall | 2011-10-11 | 1 | -28/+45 |
* | Always add the built-in overload candidates for operators &&, ||, and | Douglas Gregor | 2011-10-10 | 1 | -1/+5 |
* | Added a flag to identify resolved overloaded function references. | Abramo Bagnara | 2011-10-05 | 1 | -36/+73 |
* | Don't allow an rvalue reference to bind to the result of a calling a | Douglas Gregor | 2011-10-04 | 1 | -0/+23 |
* | CUDA: diagnose invalid calls across targets | Peter Collingbourne | 2011-10-02 | 1 | -0/+32 |
* | objc arc: Diagnose block pointer type mismatch when | Fariborz Jahanian | 2011-09-28 | 1 | -16/+4 |
* | objc++ arc: Diagnose block pointer type mismatch when | Fariborz Jahanian | 2011-09-28 | 1 | -0/+17 |
* | Only print _Bool as 'bool' when 'bool' is defined as an object-like | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
* | When 'bool' is not a built-in type but is defined as a macro, print | Douglas Gregor | 2011-09-27 | 1 | -1/+1 |
* | 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 |