Age | Commit message (Expand) | Author |
2011-07-26 | After further discussion it has been determined that alignof should report | Chad Rosier |
2011-07-25 | Allow target to specify about using minimum alignment vs preferred. Takes ca... | Chad Rosier |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-15 | Use the new APFloat::convertToInt(APSInt) function to simplify uses of | Jeffrey Yasskin |
2011-07-15 | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall |
2011-07-07 | In ARC, reclaim all return values of retainable type, not just those | John McCall |
2011-07-07 | Zap a couple unnecessary loops. | Eli Friedman |
2011-07-02 | Rewritten fix in r134139 to conform evaluation result to original evaluation ... | Abramo Bagnara |
2011-06-30 | Fixed enum constant evaluation assertions. | Abramo Bagnara |
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-24 | Implement the initial part of C++0x [expr.const]p2, which specifies | Douglas Gregor |
2011-05-20 | Introduce Type::isSignedIntegerOrEnumerationType() and | Douglas Gregor |
2011-05-13 | Refactoring of constant expression evaluator | Peter Collingbourne |
2011-04-28 | Implementation of Embarcadero array type traits | John Wiegley |
2011-04-25 | t/clang/expr-traits | John Wiegley |
2011-04-21 | For | Argyrios Kyrtzidis |
2011-04-15 | Fix bug in vector initializer when initializing a vector with another vector. | Tanya Lattner |
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-04-11 | More __unknown_anytype work. | John McCall |
2011-04-11 | Remove CK_DynamicToNull. | Anders Carlsson |
2011-04-10 | As a first step towards fixing PR9641, add a CK_DynamicToNull cast kind which | Anders Carlsson |
2011-04-07 | Basic, untested implementation for an "unknown any" type requested by LLDB. | John McCall |
2011-03-25 | Silly mistake in integer constant folding cleanup. | Eli Friedman |
2011-03-25 | Fix some clang warnings. | Anders Carlsson |
2011-03-25 | Switch constant evaluation of float casts over to cast kinds. | Eli Friedman |
2011-03-25 | Cleanup integral and vector constant evaluation of casts to use cast kinds. | Eli Friedman |
2011-03-23 | Implement a new 'availability' attribute, that allows one to specify | Douglas Gregor |
2011-03-11 | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne |
2011-03-11 | Overload IntExprEvaluator::Success() with a function that takes a CharUnits | Ken Dyck |
2011-03-04 | Move private structs into anonymous namespaces. | Benjamin Kramer |
2011-02-26 | Don't crash during constant-evaluation of 1/(1/0). PR9262. | John McCall |
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-02-02 | An insomniac stab at making block declarations list the variables they close | John McCall |
2011-01-26 | Use RecordLayout::getBaseClassOffset() where CharUnits are needed instead of | Ken Dyck |
2011-01-20 | Fix the computation of alignment for fields of packed+aligned structs. | John McCall |
2011-01-18 | Replace calls to CharUnits::fromQuantity() with ones | Ken Dyck |
2011-01-15 | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor |
2011-01-14 | Replace a literal '8' with getCharWidth(). | Ken Dyck |
2011-01-12 | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad |
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-23 | Change all self assignments X=X to (void)X, so that we can turn on a | Jeffrey Yasskin |
2010-12-14 | Rewrite ComplexExprEvaluator::VisitCastExpr to use cast kinds, and fix | John McCall |
2010-12-11 | Improved complex constants evaluation. | Abramo Bagnara |
2010-12-08 | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet |