Age | Commit message (Expand) | Author |
2013-05-06 | Add llvm_unreachable at end of fully covered switch | Hans Wennborg |
2013-05-06 | Require the containing type to be complete when we see | John McCall |
2013-05-06 | C++1y: support range-based for loops in constant expressions. | Richard Smith |
2013-05-06 | C++1y: support 'for', 'while', and 'do ... while' in constant expressions. | Richard Smith |
2013-05-05 | C++1y: support for increment and decrement in constant expression evaluation. | Richard Smith |
2013-05-05 | Factor out duplication between lvalue-to-rvalue conversions and variable | Richard Smith |
2013-05-01 | PR15884: In the 'taking the address of a temporary' extension, materialize the | Richard Smith |
2013-04-26 | Move helper classes into anonymous namespaces. | Benjamin Kramer |
2013-04-26 | C++1y: support simple variable assignments in constexpr functions. | Richard Smith |
2013-04-22 | C++1y constexpr extensions, round 1: Allow most forms of declaration and | Richard Smith |
2013-04-22 | Fix array constant expression evaluation bug: we can have different values for | Richard Smith |
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-04-13 | Annotate flavor of TLS variable (statically or dynamically initialized) onto ... | Richard Smith |
2013-04-11 | Force a load when creating a reference to a temporary copied from a bitfield. | Jordan Rose |
2013-01-29 | Fix a crash in OpenCL code by using the proper (RHS) bit-width. | Joey Gouly |
2013-01-24 | removed duplicated comment. | Fariborz Jahanian |
2013-01-24 | Patch to check for integer overflow. It has been | Fariborz Jahanian |
2013-01-22 | Switch to APFloat constructor taking fltSemantics. | Tim Northover |
2013-01-20 | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2013-01-09 | Issue warning when case value is too large to fit | Fariborz Jahanian |
2013-01-07 | Scalar shifts in the OpenCL specification (as of v. 1.2) are defined to be | David Tweed |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-28 | Replace magic numbers in CheckICE with an enum. | Richard Smith |
2012-12-28 | PR14729: Fix typo in CheckICE for BinaryConditionalOperators. | Richard Smith |
2012-12-01 | Include pruning and general cleanup. | Benjamin Kramer |
2012-10-17 | DR1535: only potentially-evaluated typeid expressions are disallowed in constant | Richard Smith |
2012-10-06 | Expose __builtin_bswap16. | Benjamin Kramer |
2012-10-03 | CodeGen: Fix a silly typo when emitting subs of block addresses. | Benjamin Kramer |
2012-10-01 | Fix treatment of case which came up on std-proposals@: 'void' is permitted in... | Richard Smith |
2012-09-28 | Allow __builtin_bswap32/64 in constant expressions, like gcc does. Patch by T... | Richard Smith |
2012-09-12 | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith |
2012-08-31 | Change the representation of builtin functions in the AST | Eli Friedman |
2012-08-29 | Move TLS check from LValueExprEvaluator::VisitVarDecl to | Hans Wennborg |
2012-08-29 | Fix r162835 as per Richard's comments. | Hans Wennborg |
2012-08-29 | The address of a TLS var is not compile-time constant (PR13720) | Hans Wennborg |
2012-08-23 | Change a bunch of cases where we do "getAs<...>->doSomething()" to | Ted Kremenek |
2012-08-13 | Factor out computation of whether a typeid's expression is potentially | Richard Smith |
2012-08-07 | Teach Expr::HasSideEffects about all the Expr types, and fix a bug where it | Richard Smith |
2012-08-04 | objective-C string literal has no side-effect, | Fariborz Jahanian |
2012-07-20 | Let Expr::HasSideEffects() return false for NULL, bool literals, this, and nu... | Nico Weber |
2012-07-17 | Don't treat overflow in floating-point conversions as a hard error in constan... | Eli Friedman |
2012-07-13 | add support for conditional expressions in Expr::HasSideEffects() | Nuno Lopes |
2012-07-10 | Fix crash when constant-evaluating a CXXConstructExpr representing | Richard Smith |
2012-07-07 | PR13290: Constant-evaluation support for CXXConstructExprs which construct a | Richard Smith |
2012-06-26 | Remove typedef which is unused after r159189. | Richard Smith |
2012-06-26 | Fix lifetime issue for backing APValue of OpaqueValueExpr in recursive | Richard Smith |
2012-06-25 | Use std::map instead of llvm::DenseMap because we rely on the stability of re... | Eli Friedman |
2012-06-06 | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie |