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