Age | Commit message (Expand) | Author |
2013-04-20 | C++1y: Allow aggregates to have default initializers. | Richard Smith |
2013-04-16 | Basic support for Microsoft property declarations and | John McCall |
2013-02-02 | Correctly classify T{} as an array temporary if T is an array of class type w... | Richard Smith |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-09-12 | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith |
2012-06-04 | Add a warning for when an array-to-pointer decay is performed on an array | Richard Smith |
2012-04-19 | Implements boxed expressions for Objective-C. <rdar://problem/10194391> | Patrick Beard |
2012-03-13 | Alternate fix to PR12248: put Sema in charge of special-casing | John McCall |
2012-03-12 | Make sure we treat variables captured by reference in lambda as modifiable lv... | Eli Friedman |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall |
2012-03-07 | AST representation for user-defined literals, plus just enough of semantic | Richard Smith |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-07 | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie |
2011-12-23 | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer |
2011-11-27 | Reference initialization with initializer lists. | Sebastian Redl |
2011-11-06 | Change the AST representation of operations on Objective-C | John McCall |
2011-10-18 | Macro metaprogramming for builtin types. | John McCall |
2011-10-11 | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman |
2011-08-30 | Declare and define implicit move constructor and assignment operator. | Sebastian Redl |
2011-07-15 | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall |
2011-07-08 | Teach CXXUnresolvedConstructExpr when it should be an | Douglas Gregor |
2011-06-21 | A few tweaks to MaterializeTemporaryExpr suggested by John. | Douglas Gregor |
2011-06-21 | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-04 | Add support for builtin astype: | Tanya Lattner |
2011-05-21 | Classify bound member function types are member function types. Fixes | Douglas Gregor |
2011-04-28 | Implementation of Embarcadero array type traits | John Wiegley |
2011-04-25 | t/clang/expr-traits | John Wiegley |
2011-04-19 | Add a new expression classification, CL_AddressableVoid | Peter Collingbourne |
2011-04-15 | C1X: implement generic selections | Peter Collingbourne |
2011-04-12 | After some discussion with Doug, we decided that it made a lot more sense | John McCall |
2011-03-26 | More coherent diagnostic attempting to assign to a member of a const object r... | Fariborz Jahanian |
2011-03-11 | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne |
2011-02-17 | Change the representation of GNU ?: expressions to use a different expression | John McCall |
2011-02-09 | AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions | Peter Collingbourne |
2011-02-09 | Remove vtables from the Stmt hierarchy; this was pretty easy as | John McCall |
2011-01-15 | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor |
2011-01-04 | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor |
2011-01-03 | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor |
2010-12-17 | Microsoft's __uuidof operator returns a lvalue. | Francois Pichet |
2010-12-08 | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet |
2010-12-07 | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet |
2010-12-06 | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall |
2010-12-06 | Clarify the logic for when to build an overloaded binop. In particular, | John McCall |
2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall |
2010-12-02 | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall |
2010-11-24 | Switch a lot of call-sites over to using the new value-kind calculations. | John McCall |