| Commit message (Expand) | Author | Age | Files | Lines |
| * | Correctly resolve an overload set passed to an overloaded operator=. PR11784. | Eli Friedman | 2012-01-17 | 1 | -0/+7 |
| * | Modify how the -verify flag works. Currently, the verification string and | Richard Trieu | 2011-12-15 | 1 | -1/+1 |
| * | Teach the ARC compiler to not require __bridge casts when | John McCall | 2011-10-17 | 1 | -1/+1 |
| * | Catch placeholder types in DefaultLvalueConversion | John McCall | 2011-10-11 | 1 | -1/+1 |
| * | Whitelist operator== and operator!= as valid for unused value warnings, | Chandler Carruth | 2011-08-17 | 1 | -2/+2 |
| * | With invalid overloaded operators, we can get into funny cases where | Douglas Gregor | 2011-05-05 | 1 | -4/+13 |
| * | Make yet another placeholder type, this one marking that an expression is a b... | John McCall | 2011-04-26 | 1 | -4/+4 |
| * | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall | 2011-04-07 | 1 | -4/+3 |
| * | Don't indescriminately print overload candidates when we have invalid | Douglas Gregor | 2011-03-16 | 1 | -0/+16 |
| * | Implement -Wenum-compare, which warns when comparing two enums of | Chandler Carruth | 2011-02-17 | 1 | -2/+2 |
| * | When complaining about ambiguous overload resolution for a unary or | Douglas Gregor | 2010-11-13 | 1 | -2/+2 |
| * | Revert r114316, -Wunused-value enabled by default was intended. | Argyrios Kyrtzidis | 2010-09-19 | 1 | -1/+1 |
| * | Make -Wunused-value off by default, matching GCC. Fixes rdar://7126194. | Argyrios Kyrtzidis | 2010-09-19 | 1 | -1/+1 |
| * | 'const std::type_info*' instead of 'std::type_info const*' | Chris Lattner | 2010-09-05 | 1 | -1/+1 |
| * | Bowing to popular demand, reduce the "comma at end of enumerator list" | Douglas Gregor | 2010-07-08 | 1 | -1/+1 |
| * | By default, warn about commas at the end of an enumerator list in C++/C89. | Douglas Gregor | 2010-07-02 | 1 | -1/+1 |
| * | Fix rdar://8139785 "implement warning on dead expression in comma operator" | Argyrios Kyrtzidis | 2010-06-30 | 1 | -1/+1 |
| * | Warn about comparisons between arrays and improve self-comparison | Douglas Gregor | 2010-06-08 | 1 | -0/+7 |
| * | When performing name lookup for an operator name, be sure to look | Douglas Gregor | 2010-04-25 | 1 | -0/+21 |
| * | Change the 'declared at' diagnostic to say 'declared here'. | Anders Carlsson | 2010-04-23 | 1 | -4/+4 |
| * | Turn access control on by default in -cc1. | John McCall | 2010-04-09 | 1 | -0/+1 |
| * | When pretty-printing tag types, only print the tag if we're in C (and | John McCall | 2010-03-10 | 1 | -4/+4 |
| * | Rework base and member initialization in constructors, with several | Douglas Gregor | 2010-01-31 | 1 | -1/+1 |
| * | When computing surrogates for calls to a value of object type, look | Douglas Gregor | 2010-01-11 | 1 | -4/+11 |
| * | Improve the lead diagnostic for C++ object subscript expressions with | John McCall | 2010-01-07 | 1 | -0/+24 |
| * | Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. | Daniel Dunbar | 2009-12-15 | 1 | -1/+1 |
| * | Reimplement reference initialization (C++ [dcl.init.ref]) using the | Douglas Gregor | 2009-12-09 | 1 | -1/+1 |
| * | Do overload resolution for compound assignment even if only the RHS is overlo... | Sebastian Redl | 2009-11-18 | 1 | -0/+28 |
| * | Don't generate superfluous and ambiguous built-in candidates for multi-level ... | Sebastian Redl | 2009-11-18 | 1 | -0/+10 |
| * | When looking for operator() to type-check a call to an object of class | Douglas Gregor | 2009-11-15 | 1 | -1/+8 |
| * | When collecting types for built-in candidates, make arrays decay to pointers.... | Sebastian Redl | 2009-11-05 | 1 | -0/+11 |
| * | Apply the special enum restrictions from [over.match.oper]p3b2 in argument-de... | Sebastian Redl | 2009-10-23 | 1 | -0/+28 |
| * | When building types from declarators, instead of building two types (one for | John McCall | 2009-10-22 | 1 | -1/+1 |
| * | When overload resolution fails for an overloaded operator, show the | Douglas Gregor | 2009-09-30 | 1 | -2/+2 |
| * | Note location of operators caused the circularity. | Fariborz Jahanian | 2009-09-30 | 1 | -4/+4 |
| * | Detect operator-> chains of arbitrary length. Use a terrible data structure | John McCall | 2009-09-30 | 1 | -0/+16 |
| * | self-referecing operator '->' member function was causing | Fariborz Jahanian | 2009-09-30 | 1 | -0/+11 |
| * | 13.1-p3 Overloadable declarations | Fariborz Jahanian | 2009-09-29 | 1 | -1/+1 |
| * | When looking for overloaded member operators, make sure to instantiate | Douglas Gregor | 2009-08-27 | 1 | -0/+4 |
| * | Create a new PrintingPolicy class, which we pass down through the AST | Douglas Gregor | 2009-05-29 | 1 | -1/+1 |
| * | Rename clang to clang-cc. | Daniel Dunbar | 2009-03-24 | 1 | -1/+1 |
| * | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl | 2009-03-16 | 1 | -1/+1 |
| * | Bring operator name lookup (as required for C++ operator overloading) | Douglas Gregor | 2009-02-04 | 1 | -2/+1 |
| * | Initial implementation of argument dependent lookup (a.k.a. ADL, | Douglas Gregor | 2009-02-04 | 1 | -0/+15 |
| * | Fix argument-passing bugs in a call to object | Douglas Gregor | 2009-01-13 | 1 | -2/+14 |
| * | Make sure we don't name a constructor or destructor with a qualified | Douglas Gregor | 2009-01-13 | 1 | -0/+11 |
| * | Implement a %plural modifier for complex plural forms in diagnostics. Use it ... | Sebastian Redl | 2008-11-22 | 1 | -1/+1 |
| * | Fix overloading of non-static member functions that differ in their cv-qualif... | Douglas Gregor | 2008-11-21 | 1 | -3/+5 |
| * | Don't print canonical types in overloading-related diagnostics | Douglas Gregor | 2008-11-21 | 1 | -2/+4 |
| * | Add support for overloaded operator-> when used in a member access | Douglas Gregor | 2008-11-20 | 1 | -0/+18 |