Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-02-17Implement -Wenum-compare, which warns when comparing two enums ofChandler Carruth
2010-11-13When complaining about ambiguous overload resolution for a unary orDouglas Gregor
2010-09-20Revert r114316, -Wunused-value enabled by default was intended.Argyrios Kyrtzidis
2010-09-20Make -Wunused-value off by default, matching GCC. Fixes rdar://7126194.Argyrios Kyrtzidis
2010-09-05'const std::type_info*' instead of 'std::type_info const*'Chris Lattner
2010-07-08Bowing to popular demand, reduce the "comma at end of enumerator list"Douglas Gregor
2010-07-02By default, warn about commas at the end of an enumerator list in C++/C89.Douglas Gregor
2010-06-30Fix rdar://8139785 "implement warning on dead expression in comma operator"Argyrios Kyrtzidis
2010-06-08Warn about comparisons between arrays and improve self-comparisonDouglas Gregor
2010-04-26When performing name lookup for an operator name, be sure to lookDouglas Gregor
2010-04-23Change the 'declared at' diagnostic to say 'declared here'.Anders Carlsson
2010-04-09Turn access control on by default in -cc1.John McCall
2010-03-10When pretty-printing tag types, only print the tag if we're in C (andJohn McCall
2010-01-31Rework base and member initialization in constructors, with severalDouglas Gregor
2010-01-11When computing surrogates for calls to a value of object type, lookDouglas Gregor
2010-01-07Improve the lead diagnostic for C++ object subscript expressions withJohn McCall
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar
2009-12-10Reimplement reference initialization (C++ [dcl.init.ref]) using theDouglas Gregor
2009-11-19Do overload resolution for compound assignment even if only the RHS is overlo...Sebastian Redl
2009-11-18Don't generate superfluous and ambiguous built-in candidates for multi-level ...Sebastian Redl
2009-11-15When looking for operator() to type-check a call to an object of classDouglas Gregor
2009-11-05When collecting types for built-in candidates, make arrays decay to pointers....Sebastian Redl
2009-10-23Apply the special enum restrictions from [over.match.oper]p3b2 in argument-de...Sebastian Redl
2009-10-23When building types from declarators, instead of building two types (one forJohn McCall
2009-10-01When overload resolution fails for an overloaded operator, show theDouglas Gregor
2009-09-30Note location of operators caused the circularity.Fariborz Jahanian
2009-09-30Detect operator-> chains of arbitrary length. Use a terrible data structureJohn McCall
2009-09-30self-referecing operator '->' member function was causingFariborz Jahanian
2009-09-3013.1-p3 Overloadable declarationsFariborz Jahanian
2009-08-28When looking for overloaded member operators, make sure to instantiateDouglas Gregor
2009-05-30Create a new PrintingPolicy class, which we pass down through the ASTDouglas Gregor
2009-03-24Rename clang to clang-cc.Daniel Dunbar
2009-03-17Almost complete implementation of rvalue references. One bug, and a few uncle...Sebastian Redl
2009-02-04Bring operator name lookup (as required for C++ operator overloading)Douglas Gregor
2009-02-04Initial implementation of argument dependent lookup (a.k.a. ADL,Douglas Gregor
2009-01-13Fix argument-passing bugs in a call to objectDouglas Gregor
2009-01-13Make sure we don't name a constructor or destructor with a qualifiedDouglas Gregor
2008-11-22Implement a %plural modifier for complex plural forms in diagnostics. Use it ...Sebastian Redl
2008-11-21Fix overloading of non-static member functions that differ in their cv-qualif...Douglas Gregor
2008-11-21Don't print canonical types in overloading-related diagnosticsDouglas Gregor
2008-11-20Add support for overloaded operator-> when used in a member accessDouglas Gregor
2008-11-20Beef up the test for function call operators slightlyDouglas Gregor
2008-11-20Implement the rest of C++ [over.call.object], which permits the objectDouglas Gregor
2008-11-20Support for calling overloaded function call operators (operator())Douglas Gregor
2008-11-19Support overloading of the subscript operator[], including support forDouglas Gregor
2008-11-19Added operator overloading for unary operators, post-increment, andDouglas Gregor
2008-11-19Built-in equality and relational operators have return type "bool" in C++,Douglas Gregor
2008-11-19Partial expansion of C++ operator overloading (for binary operators)Douglas Gregor
2008-11-07Initial, rudimentary implementation of operator overloading for binaryDouglas Gregor