Age | Commit message (Expand) | Author |
2009-07-29 | Change uses of: | Ted Kremenek |
2009-07-23 | This patch fixes the implementations of the __has_trivial_destructor | Douglas Gregor |
2009-07-18 | Revert r75641. | Anders Carlsson |
2009-07-17 | Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods | Ted Kremenek |
2009-07-17 | Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), ... | Ted Kremenek |
2009-07-16 | Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. | Ted Kremenek |
2009-07-14 | Rename RecordLayout.h to ASTRecordLayout.h | Anders Carlsson |
2009-07-10 | This patch includes a conceptually simple, but very intrusive/pervasive change. | Steve Naroff |
2009-07-01 | Fix thinko in r74506, test condition for floats was inverted. | Daniel Dunbar |
2009-07-01 | Implement Eli's feedback for vecto constant expressions; | Nate Begeman |
2009-06-30 | De-ASTContext-ify DeclContext. | Argyrios Kyrtzidis |
2009-06-26 | OpenCL 1.0 Support: | Nate Begeman |
2009-06-14 | PR4351: Add constant evaluation for constructs like "foo == NULL", where | Eli Friedman |
2009-06-14 | Sink the BuiltinInfo object from ASTContext into the | Chris Lattner |
2009-06-04 | Minor simplification. | Eli Friedman |
2009-06-04 | PR4326: Handle constant evaluation for void* pointer subtraction | Eli Friedman |
2009-05-30 | Some small fixes for fields of reference type. | Eli Friedman |
2009-05-30 | Cleqnup ideas from Chris, thanks. | Mike Stump |
2009-05-30 | Improve __builtin_nanf support; we now can deal with them as constants. | Mike Stump |
2009-05-27 | Fix up constant expression handling to deal with the address | Eli Friedman |
2009-05-26 | When evaluating a VarDecl as a constant or determining whether it is | Douglas Gregor |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |
2009-05-03 | Remove an unneeded special case. | Daniel Dunbar |
2009-04-30 | Properly compute the alignment of typedefs that make use of the | Douglas Gregor |
2009-04-29 | Minor simplification; also silences gcc warning. | Eli Friedman |
2009-04-28 | PR4097: add logic to Evaluate to handle pointer equality comparisons. | Eli Friedman |
2009-04-22 | Add handling for complex->int, int->complex float, and float->complex | Eli Friedman |
2009-04-21 | Use an ASTRecordLayout to compute the sizeof an interface, not | Daniel Dunbar |
2009-04-16 | Fix <rdar://problem/6765383> clang-6: clang does not appear to support declar... | Steve Naroff |
2009-04-10 | Add Expr::EvaluateAsLValue which will (believe it or not) try to evaluate an ... | Anders Carlsson |
2009-04-09 | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor |
2009-03-30 | Slight generalization for Evaluate with const variables. | Eli Friedman |
2009-03-24 | Fix PR3868 by making Evaluate handle cases like "(long)&a + 4". | Eli Friedman |
2009-03-23 | Minor Evaluate cleanup; add some boilerplate implementations to | Eli Friedman |
2009-03-23 | Minor enhancements to Evaluate. | Eli Friedman |
2009-03-16 | Almost complete implementation of rvalue references. One bug, and a few uncle... | Sebastian Redl |
2009-03-04 | Minor cleanup for choose expressions: add a helper that returns the | Eli Friedman |
2009-02-28 | Fix obvious shortcoming in the implementations of Evaluate for | Eli Friedman |
2009-02-27 | Change the AST generated for offsetof a bit so that it looks like a | Eli Friedman |
2009-02-27 | Some minor improvements to Evaluate. | Eli Friedman |
2009-02-26 | Add Type::hasPointerRepresentation predicate. | Daniel Dunbar |
2009-02-26 | Remove short-circuit evaluation and the extension warnings. I'm | Eli Friedman |
2009-02-24 | first wave of fixes for @encode sema support. This is part of PR3648. | Chris Lattner |
2009-02-23 | Revert http://llvm.org/viewvc/llvm-project?view=rev&revision=65244. | Steve Naroff |
2009-02-23 | A few small improvements to Evaluate for stuff I noted in FIXMEs. | Eli Friedman |
2009-02-22 | A bit of Evaluate cleanup. Also, a full audit of what's missing that | Eli Friedman |
2009-02-22 | Enhance Evaluate to handle ObjC qualified id and class types; as far as | Eli Friedman |
2009-02-22 | Fix for PR3433: map __alignof__ to preferred alignment. (This was | Eli Friedman |
2009-02-21 | Evaluation of unary deref could call integer evaluator on non-integral | Daniel Dunbar |
2009-02-20 | Handle constant int -> ptr casts of lvalue results. | Daniel Dunbar |