| Commit message (Expand) | Author | Age | Files | Lines |
* | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor | 2008-12-11 | 9 | -128/+393 |
* | The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed:... | Steve Naroff | 2008-12-10 | 1 | -28/+30 |
* | Some cleanups to the dependent-types commit, as suggested by Sebastian | Douglas Gregor | 2008-12-10 | 1 | -4/+0 |
* | Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpec... | Steve Naroff | 2008-12-10 | 1 | -27/+27 |
* | Fix <rdar://problem/6418623> Bogus block type compatibility warning. | Steve Naroff | 2008-12-10 | 1 | -1/+20 |
* | Prevent bogus warning on unimplemented setter/getter when user | Fariborz Jahanian | 2008-12-09 | 1 | -0/+8 |
* | Support for implementation of property in the case where | Fariborz Jahanian | 2008-12-09 | 1 | -3/+4 |
* | Add preliminary CFG support for @throw. We basically treat it like a return ... | Ted Kremenek | 2008-12-09 | 1 | -1/+23 |
* | ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories ... | Steve Naroff | 2008-12-08 | 1 | -0/+8 |
* | Workaround for PR3173. The fix is correct in the sense that if the enum | Eli Friedman | 2008-12-08 | 1 | -0/+3 |
* | Use of properties declared in protocols in the category | Fariborz Jahanian | 2008-12-06 | 1 | -0/+25 |
* | Add support for calls to dependent names within templates, e.g., | Douglas Gregor | 2008-12-06 | 3 | -0/+29 |
* | Introduce basic support for dependent types, type-dependent | Douglas Gregor | 2008-12-05 | 6 | -4/+135 |
* | Fixed a comment. | Fariborz Jahanian | 2008-12-05 | 1 | -4/+4 |
* | This test checks for duplicate implementation of the same | Fariborz Jahanian | 2008-12-05 | 1 | -0/+54 |
* | Representation of template type parameters and non-type template | Douglas Gregor | 2008-12-05 | 7 | -1/+96 |
* | This wasn't such a good idea after all as it broke some tests. | Anders Carlsson | 2008-12-05 | 1 | -10/+1 |
* | Handle __builtin___CFStringMakeConstantString in Expr::Evaluate. | Anders Carlsson | 2008-12-05 | 1 | -1/+10 |
* | Several things... | Steve Naroff | 2008-12-04 | 2 | -2/+2 |
* | Fix some type punning errors in SizeOfAlignOf and Typeid AST nodes. This shou... | Sebastian Redl | 2008-12-03 | 3 | -5/+5 |
* | Correct pretty printing of array new expressions. | Sebastian Redl | 2008-12-02 | 1 | -4/+9 |
* | Handle new by passing the Declaration to the Action, not a processed type. | Sebastian Redl | 2008-12-02 | 3 | -14/+21 |
* | This patch corrects problem in searching for a setter/getter method for | Fariborz Jahanian | 2008-12-02 | 1 | -24/+18 |
* | -Add several ObjC types to Decl::getDeclKindName(), a useful debug hook. | Steve Naroff | 2008-12-01 | 1 | -0/+3 |
* | Use EmitInt, not Emit, to emit unsigned values | Douglas Gregor | 2008-12-01 | 1 | -2/+2 |
* | Generate the correct results for the comma expression. Fixes PR3123. | Anders Carlsson | 2008-12-01 | 1 | -7/+10 |
* | Revert change that made isNullPointerConstant start emitting warnings. We don... | Anders Carlsson | 2008-12-01 | 1 | -11/+9 |
* | Remove dead code. | Anders Carlsson | 2008-12-01 | 1 | -3/+0 |
* | Add a new variant of isNullConstantExpr that returns an EvalResult. | Anders Carlsson | 2008-12-01 | 1 | -5/+15 |
* | Emit the correct diagnostic when a comma is in an ICE. | Anders Carlsson | 2008-12-01 | 1 | -4/+4 |
* | Change the diagnostics that the evaluator reports to be of type NOTE. | Anders Carlsson | 2008-11-30 | 1 | -11/+10 |
* | Replace the isEvaluated bool with a ShortCircuit int, making it easier to han... | Anders Carlsson | 2008-11-30 | 1 | -12/+10 |
* | Pass the expression to the Error and Extension methods. | Anders Carlsson | 2008-11-30 | 1 | -20/+22 |
* | Add a new variant of Evaluate and reimplement the old Evaluate in terms of th... | Anders Carlsson | 2008-11-30 | 1 | -7/+17 |
* | General cleanup, evaluate the RHS of a logical op even if the LHS will give u... | Anders Carlsson | 2008-11-30 | 1 | -16/+25 |
* | EvalInfo now holds a reference to an EvalResult struct. | Anders Carlsson | 2008-11-30 | 1 | -24/+14 |
* | Implement the GNU __null extension | Douglas Gregor | 2008-11-29 | 3 | -1/+29 |
* | Switch QualType to use llvm::PointerIntPair internally to do the pointer | Chris Lattner | 2008-11-28 | 1 | -6/+8 |
* | remove debug-only assertion in the complex float evaluator as it makes some r... | Nuno Lopes | 2008-11-26 | 1 | -1/+0 |
* | Refactored checking on readonly property into a method. | Fariborz Jahanian | 2008-11-25 | 2 | -18/+27 |
* | Patch to allow over-riding of readonly property to | Fariborz Jahanian | 2008-11-25 | 1 | -4/+18 |
* | Remove more #ifdeffed code | Anders Carlsson | 2008-11-25 | 1 | -144/+0 |
* | Fix CFG bug where the 'increment' block for a 'for' statement would not be | Ted Kremenek | 2008-11-24 | 1 | -2/+10 |
* | Reimplement Expr::isConstantExpr in terms of Expr::Evaluate. This fixes PR2832. | Anders Carlsson | 2008-11-24 | 1 | -0/+25 |
* | The address of a variable is only constant if the variable has global storage. | Anders Carlsson | 2008-11-24 | 1 | -1/+9 |
* | Fix bug in the constant evaluator. Fixes PR3115. | Anders Carlsson | 2008-11-24 | 1 | -33/+33 |
* | Migrate some stuff from NamedDecl::getName() to | Chris Lattner | 2008-11-24 | 5 | -22/+22 |
* | Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it | Chris Lattner | 2008-11-24 | 2 | -7/+6 |
* | simplify this code. | Chris Lattner | 2008-11-24 | 1 | -1/+2 |
* | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 5 | -11/+10 |