| Commit message (Expand) | Author | Age | Files | Lines |
| * | Extend the self-reference warning to catch when a constructor references itse... | Richard Trieu | 2011-09-01 | 1 | -0/+8 |
| * | Fix PR10694: Boolean conversions can be from pointers, and those conversions | Jeffrey Yasskin | 2011-08-30 | 1 | -0/+5 |
| * | Print 'int' instead of 'const int' in the narrowing conversion error, since the | Jeffrey Yasskin | 2011-08-29 | 1 | -3/+3 |
| * | Refactor and fix checking for initialization of flexible array members. The ... | Eli Friedman | 2011-08-23 | 1 | -24/+45 |
| * | Remove function parameter which always used the default value. | Eli Friedman | 2011-08-23 | 1 | -6/+3 |
| * | Downgrade "err_init_list_variable_narrowing" into a warning in Microsoft mode... | Francois Pichet | 2011-08-18 | 1 | -2/+2 |
| * | Conversions to bool count as integer conversions for the purposes of | Jeffrey Yasskin | 2011-08-12 | 1 | -0/+1 |
| * | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -11/+21 |
| * | This patch implements as much of the narrowing conversion error specified by | Jeffrey Yasskin | 2011-07-26 | 1 | -5/+216 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -5/+5 |
| * | This handles the missing cases of opencl vector literals. | Tanya Lattner | 2011-07-15 | 1 | -1/+2 |
| * | Revert 135177 to fix PR10363. | Rafael Espindola | 2011-07-14 | 1 | -225/+80 |
| * | For C++11, do more checking of initializer lists up-front, enabling some subs... | Sebastian Redl | 2011-07-14 | 1 | -80/+225 |
| * | Remove InitializationSequence::ReferenceBinding, the last redundant sequence ... | Sebastian Redl | 2011-07-14 | 1 | -9/+7 |
| * | Check for deprecated/unavailable/etc attributes on fields that are | Douglas Gregor | 2011-06-29 | 1 | -0/+15 |
| * | Add support for C++ namespace-aware typo correction, e.g., correcting | Douglas Gregor | 2011-06-28 | 1 | -8/+12 |
| * | ARC writeback isn't supposed to apply to local indirect pointers, | John McCall | 2011-06-27 | 1 | -12/+21 |
| * | Changes ParenListExpr to always require a type. | Manuel Klimek | 2011-06-22 | 1 | -13/+3 |
| * | When binding a reference to an Automatic Reference Counting temporary, | Douglas Gregor | 2011-06-22 | 1 | -0/+7 |
| * | Give MaterializeTemporaryExpr the exact type of the lvalue it binds | Douglas Gregor | 2011-06-22 | 1 | -1/+3 |
| * | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -2/+3 |
| * | Be sure to try a final ARC-production even in Objective-C++. | John McCall | 2011-06-16 | 1 | -0/+2 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -27/+288 |
| * | Implement Objective-C Related Result Type semantics. | Douglas Gregor | 2011-06-11 | 1 | -0/+6 |
| * | Drop most of InitializationSequence::SequenceKind's values. They didn't reall... | Sebastian Redl | 2011-06-05 | 1 | -56/+12 |
| * | Remove more references to FailedSequence. | Sebastian Redl | 2011-06-05 | 1 | -3/+3 |
| * | Remove all references to InitializationSequence::FailedSequence from outside ... | Sebastian Redl | 2011-06-05 | 1 | -1/+1 |
| * | Implement defaulting of destructors. | Alexis Hunt | 2011-05-12 | 1 | -0/+15 |
| * | Make it so that we actually generate definitions for explicitly | Alexis Hunt | 2011-05-12 | 1 | -1/+1 |
| * | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -1/+2 |
| * | Fix delegating constructors stylistic issues. | Alexis Hunt | 2011-05-03 | 1 | -2/+1 |
| * | Fully implement delegating constructors! | Alexis Hunt | 2011-05-01 | 1 | -7/+10 |
| * | Don't waste memory if the initializer expression is empty. | Argyrios Kyrtzidis | 2011-04-28 | 1 | -4/+8 |
| * | PR4304: Add warning for designators in strict c89 mode. | Eli Friedman | 2011-04-24 | 1 | -0/+3 |
| * | Use the ArrayFiller to fill out "holes" in the array initializer due to desig... | Argyrios Kyrtzidis | 2011-04-21 | 1 | -1/+6 |
| * | For | Argyrios Kyrtzidis | 2011-04-21 | 1 | -7/+16 |
| * | In C++, when initializing an array from a pascal string, it's OK if the array | Anders Carlsson | 2011-04-14 | 1 | -0/+9 |
| * | PR9669: implement correct checking for [dcl.init.string]p2. | Eli Friedman | 2011-04-11 | 1 | -5/+14 |
| * | Use ExprResult& instead of Expr *& in Sema | John Wiegley | 2011-04-08 | 1 | -67/+90 |
| * | Implement delegating constructors partially. | Alexis Hunt | 2011-02-26 | 1 | -0/+7 |
| * | Remove the FIXME I introduced last night, and pull the logic for | Chandler Carruth | 2011-02-25 | 1 | -3/+8 |
| * | Rough fix for PR9323 that prevents Clang from marking copy constructor | Chandler Carruth | 2011-02-25 | 1 | -1/+3 |
| * | Implement the GNU C extension which permits the initialization of an | Douglas Gregor | 2011-02-22 | 1 | -4/+101 |
| * | Reorganize subelement initialization checking, no functionality change. | John McCall | 2011-02-21 | 1 | -70/+82 |
| * | Small optimization: avoid redundant checks of whether a type is an array | John McCall | 2011-02-21 | 1 | -21/+25 |
| * | implement a tiny amount of codegen support for gnu array range | Chris Lattner | 2011-02-19 | 1 | -2/+7 |
| * | Handle the resolution of a reference to a function template (which | Douglas Gregor | 2011-02-19 | 1 | -4/+8 |
| * | When initializing struct members, the important thing is that the "initializi... | Argyrios Kyrtzidis | 2011-02-01 | 1 | -1/+2 |
| * | Fixed parameter names. | Abramo Bagnara | 2011-01-27 | 1 | -2/+2 |
| * | Fix whitespace. | NAKAMURA Takumi | 2011-01-27 | 1 | -348/+348 |