| Commit message (Expand) | Author | Age | Files | Lines |
| * | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -17/+17 |
| * | Replace magic numbers in CheckICE with an enum. | Richard Smith | 2012-12-28 | 1 | -70/+66 |
| * | PR14729: Fix typo in CheckICE for BinaryConditionalOperators. | Richard Smith | 2012-12-28 | 1 | -1/+1 |
| * | Include pruning and general cleanup. | Benjamin Kramer | 2012-12-01 | 1 | -2/+3 |
| * | DR1535: only potentially-evaluated typeid expressions are disallowed in constant | Richard Smith | 2012-10-17 | 1 | -12/+6 |
| * | Expose __builtin_bswap16. | Benjamin Kramer | 2012-10-06 | 1 | -0/+1 |
| * | CodeGen: Fix a silly typo when emitting subs of block addresses. | Benjamin Kramer | 2012-10-03 | 1 | -1/+1 |
| * | Fix treatment of case which came up on std-proposals@: 'void' is permitted in... | Richard Smith | 2012-10-01 | 1 | -3/+1 |
| * | Allow __builtin_bswap32/64 in constant expressions, like gcc does. Patch by T... | Richard Smith | 2012-09-28 | 1 | -0/+9 |
| * | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith | 2012-09-12 | 1 | -0/+1 |
| * | Change the representation of builtin functions in the AST | Eli Friedman | 2012-08-31 | 1 | -0/+2 |
| * | Move TLS check from LValueExprEvaluator::VisitVarDecl to | Hans Wennborg | 2012-08-29 | 1 | -2/+8 |
| * | Fix r162835 as per Richard's comments. | Hans Wennborg | 2012-08-29 | 1 | -1/+1 |
| * | The address of a TLS var is not compile-time constant (PR13720) | Hans Wennborg | 2012-08-29 | 1 | -0/+2 |
| * | Change a bunch of cases where we do "getAs<...>->doSomething()" to | Ted Kremenek | 2012-08-23 | 1 | -8/+8 |
| * | Factor out computation of whether a typeid's expression is potentially | Richard Smith | 2012-08-13 | 1 | -0/+3 |
| * | Teach Expr::HasSideEffects about all the Expr types, and fix a bug where it | Richard Smith | 2012-08-07 | 1 | -92/+3 |
| * | objective-C string literal has no side-effect, | Fariborz Jahanian | 2012-08-04 | 1 | -0/+1 |
| * | Let Expr::HasSideEffects() return false for NULL, bool literals, this, and nu... | Nico Weber | 2012-07-20 | 1 | -0/+6 |
| * | Don't treat overflow in floating-point conversions as a hard error in constan... | Eli Friedman | 2012-07-17 | 1 | -6/+5 |
| * | add support for conditional expressions in Expr::HasSideEffects() | Nuno Lopes | 2012-07-13 | 1 | -0/+3 |
| * | Fix crash when constant-evaluating a CXXConstructExpr representing | Richard Smith | 2012-07-10 | 1 | -8/+9 |
| * | PR13290: Constant-evaluation support for CXXConstructExprs which construct a | Richard Smith | 2012-07-07 | 1 | -19/+39 |
| * | Remove typedef which is unused after r159189. | Richard Smith | 2012-06-26 | 1 | -4/+0 |
| * | Fix lifetime issue for backing APValue of OpaqueValueExpr in recursive | Richard Smith | 2012-06-26 | 1 | -41/+7 |
| * | Use std::map instead of llvm::DenseMap because we rely on the stability of re... | Eli Friedman | 2012-06-25 | 1 | -2/+6 |
| * | Revert Decl's iterators back to pointer value_type rather than reference valu... | David Blaikie | 2012-06-06 | 1 | -4/+4 |
| * | If the first argument of __builtin_object_size can be folded to a constant | Richard Smith | 2012-05-23 | 1 | -4/+13 |
| * | My first effort to do this more subtly failed, so elaborately | John McCall | 2012-05-01 | 1 | -31/+59 |
| * | Remove the ref/value inconsistency in filter_decl_iterator. | David Blaikie | 2012-04-30 | 1 | -11/+11 |
| * | Fix a crash-on-invalid where the constant evaluator would try to | John McCall | 2012-04-26 | 1 | -0/+5 |
| * | Implements boxed expressions for Objective-C. <rdar://problem/10194391> | Patrick Beard | 2012-04-19 | 1 | -2/+2 |
| * | Per Richard's comments on r154794, add the checks necessary to handle constan... | Eli Friedman | 2012-04-16 | 1 | -2/+13 |
| * | Make constant evaluation for pointer comparisons work correctly for some unco... | Eli Friedman | 2012-04-16 | 1 | -6/+18 |
| * | The result of the Microsoft __uuidof operator must be considered a global lva... | Francois Pichet | 2012-04-16 | 1 | -0/+6 |
| * | PR12226: don't generate wrong code if a braced string literal is used to | Richard Smith | 2012-04-15 | 1 | -6/+9 |
| * | Implement the missing pieces needed to support libstdc++4.7's <atomic>: | Richard Smith | 2012-04-13 | 1 | -26/+26 |
| * | Provide, and document, a set of __c11_atomic_* intrinsics to implement C11's | Richard Smith | 2012-04-11 | 1 | -1/+2 |
| * | Don't forget to evaluate the subexpression in a null pointer cast. If we're | Richard Smith | 2012-04-08 | 1 | -0/+2 |
| * | Implement support for null non-type template arguments for non-type | Douglas Gregor | 2012-04-06 | 1 | -2/+4 |
| * | Simplify DataRecursiveIntBinOpEvaluator::VisitBinOp() a bit and make sure we ... | Argyrios Kyrtzidis | 2012-03-22 | 1 | -13/+9 |
| * | Change the binary operator data recursive evaluator to not stop at the first | Richard Trieu | 2012-03-21 | 1 | -16/+14 |
| * | [Sema] Introduce a data recursive evaluator specific to binary operators. | Argyrios Kyrtzidis | 2012-03-15 | 1 | -181/+401 |
| * | Remove hacky temporary fix of r151585. | Argyrios Kyrtzidis | 2012-03-15 | 1 | -22/+1 |
| * | Unrevert r152761 (reverted in r152772) with a fix for the issue which was | Richard Smith | 2012-03-15 | 1 | -64/+75 |
| * | Revert r152761 "Minor optimization to constant evaluation: don't bother | Daniel Dunbar | 2012-03-15 | 1 | -74/+64 |
| * | Minor optimization to constant evaluation: don't bother computing expr source | Richard Smith | 2012-03-15 | 1 | -64/+74 |
| * | Allow vectors to be constructed from constexpr function arguments in | Richard Smith | 2012-03-13 | 1 | -2/+2 |
| * | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -9/+9 |
| * | Add a missing 'template' keyword. | Douglas Gregor | 2012-03-11 | 1 | -1/+1 |