1. e8e3205 Warning fixes to operator precedence warnings. by Eli Friedman · 16 years ago
  2. fea8685 Remove tabs. by Nate Begeman · 16 years ago
  3. 3281eff Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  4. 9ee92e8 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
  5. 9e7d9de Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  6. fd64bb6 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  7. 9fbb609 Removed setRecordForDecl. Added a FIXME. by Fariborz Jahanian · 16 years ago
  8. 0874bd3 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
  9. 7df7b6b Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
  10. f9d1e4b dont call iterator::end() on every cycle and dont read already-deleted memory by Nuno Lopes · 16 years ago
  11. 640b319 minor WS fix for the previous commit by Nuno Lopes · 16 years ago
  12. 6d34ae5 fix leakage of CXXSpecialName objects in DeclarationNameTable by Nuno Lopes · 16 years ago
  13. aaa63a7 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago
  14. 60f8c86 Add storage layout to ObjC classes. by Fariborz Jahanian · 16 years ago
  15. 42b83dd Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p by Chris Lattner · 16 years ago
  16. 1f64805 add a fixme. by Chris Lattner · 16 years ago
  17. 28daa53 implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
  18. 670a62c Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  19. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  20. a4c46df Actually distinguish between RecordDecl::field_iterator and RecordDecl::field_const_iterator, propagating the constness down to the FieldDecls. by Douglas Gregor · 16 years ago
  21. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  22. bc76dd0 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  23. 83f96f6 Some cleanups to the dependent-types commit, as suggested by Sebastian by Douglas Gregor · 16 years ago
  24. 4e78fd0 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  25. c0febd5 Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
  26. 91b51a9 Prevent bogus warning on unimplemented setter/getter when user by Fariborz Jahanian · 16 years ago
  27. fef30b5 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  28. 2fda504 Add preliminary CFG support for @throw. We basically treat it like a return statement. by Ted Kremenek · 16 years ago
  29. b79c01e ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories protocols. by Steve Naroff · 16 years ago
  30. e9a0f43 Workaround for PR3173. The fix is correct in the sense that if the enum by Eli Friedman · 16 years ago
  31. 1ac2bc4 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  32. 5c37de7 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  33. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  34. 9482a4f Fixed a comment. by Fariborz Jahanian · 16 years ago
  35. ae6f6fd This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  36. 72c3f31 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  37. d407a76 This wasn't such a good idea after all as it broke some tests. by Anders Carlsson · 16 years ago
  38. b3fee0f Handle __builtin___CFStringMakeConstantString in Expr::Evaluate. by Anders Carlsson · 16 years ago
  39. c77a636 Several things... by Steve Naroff · 16 years ago
  40. d457589 Fix some type punning errors in SizeOfAlignOf and Typeid AST nodes. This should satisfy compilers and language lawyers alike. by Sebastian Redl · 16 years ago
  41. 6fec648 Correct pretty printing of array new expressions. by Sebastian Redl · 16 years ago
  42. cee63fb Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
  43. b85cce6 This patch corrects problem in searching for a setter/getter method for by Fariborz Jahanian · 16 years ago
  44. d40910b -Add several ObjC types to Decl::getDeclKindName(), a useful debug hook. by Steve Naroff · 16 years ago
  45. 19ac6ff Use EmitInt, not Emit, to emit unsigned values by Douglas Gregor · 16 years ago
  46. 4fdfb09 Generate the correct results for the comma expression. Fixes PR3123. by Anders Carlsson · 16 years ago
  47. d265277 Revert change that made isNullPointerConstant start emitting warnings. We don't want that :) by Anders Carlsson · 16 years ago
  48. 07b5cc0 Remove dead code. by Anders Carlsson · 16 years ago
  49. efa9b38 Add a new variant of isNullConstantExpr that returns an EvalResult. by Anders Carlsson · 16 years ago
  50. 027f62e Emit the correct diagnostic when a comma is in an ICE. by Anders Carlsson · 16 years ago
  51. 0e8acbb Change the diagnostics that the evaluator reports to be of type NOTE. by Anders Carlsson · 16 years ago
  52. f0c1e4b Replace the isEvaluated bool with a ShortCircuit int, making it easier to handle recursion by Anders Carlsson · 16 years ago
  53. 82206e2 Pass the expression to the Error and Extension methods. by Anders Carlsson · 16 years ago
  54. 5b45d4e Add a new variant of Evaluate and reimplement the old Evaluate in terms of the new. by Anders Carlsson · 16 years ago
  55. fcb4d09 General cleanup, evaluate the RHS of a logical op even if the LHS will give us the result. by Anders Carlsson · 16 years ago
  56. 54da049 EvalInfo now holds a reference to an EvalResult struct. by Anders Carlsson · 16 years ago
  57. 2d8b273 Implement the GNU __null extension by Douglas Gregor · 16 years ago
  58. 5cf243a Switch QualType to use llvm::PointerIntPair internally to do the pointer by Chris Lattner · 16 years ago
  59. cfe2571 remove debug-only assertion in the complex float evaluator as it makes some real apps crash by Nuno Lopes · 16 years ago
  60. 31afbf0 Refactored checking on readonly property into a method. by Fariborz Jahanian · 16 years ago
  61. 6669db9 Patch to allow over-riding of readonly property to by Fariborz Jahanian · 16 years ago
  62. c9ad94e Remove more #ifdeffed code by Anders Carlsson · 16 years ago
  63. d017243 Fix CFG bug where the 'increment' block for a 'for' statement would not be by Ted Kremenek · 16 years ago
  64. e8a32b8 Reimplement Expr::isConstantExpr in terms of Expr::Evaluate. This fixes PR2832. by Anders Carlsson · 16 years ago
  65. 35873c4 The address of a variable is only constant if the variable has global storage. by Anders Carlsson · 16 years ago
  66. 4bbc0e0 Fix bug in the constant evaluator. Fixes PR3115. by Anders Carlsson · 16 years ago
  67. 39f34e9 Migrate some stuff from NamedDecl::getName() to by Chris Lattner · 16 years ago
  68. 8ec03f5 Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  69. bb49c3e simplify this code. by Chris Lattner · 16 years ago
  70. 077bf5e Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 16 years ago
  71. 9d4c157 Return false if we encounter a type we can't handle. by Anders Carlsson · 16 years ago
  72. 6dde0d5 Case values must be evaluated by Anders Carlsson · 16 years ago
  73. 51fe996 Use Expr::Evaluate for case statements. Fixes PR2525 by Anders Carlsson · 16 years ago
  74. ba8d2d6 Support for implicit property assignment. Error assigning to by Fariborz Jahanian · 16 years ago
  75. 5daf570 New AST node to access "implicit" setter/getter using property dor syntax. by Fariborz Jahanian · 16 years ago
  76. 4c5d320 Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  77. 4fcd399 Enable some more operator overloading tests, and don't look into an identifier for functions that might not have one by Douglas Gregor · 16 years ago
  78. 92e62b0 Rename IdentifierInfo::isName to ::isStr. Use a nifty trick by Chris Lattner · 16 years ago
  79. 148f061 CMake: Added some source files. by Oscar Fuentes · 16 years ago
  80. 051c13a Make DeclContext::getLexicalParent reuse DeclContext::getParent. by Argyrios Kyrtzidis · 16 years ago
  81. 77407b8 Take care another assert: by Argyrios Kyrtzidis · 16 years ago
  82. a468d34 fix folding of '*doubleArray' by Nuno Lopes · 16 years ago
  83. 20bc676 Make the non-const DeclContext::getParent call the const version, instead of the other way around. by Argyrios Kyrtzidis · 16 years ago
  84. 337c6b9 Support overloading of the subscript operator[], including support for by Douglas Gregor · 16 years ago
  85. 7425373 Added operator overloading for unary operators, post-increment, and by Douglas Gregor · 16 years ago
  86. 7e3e9b1 simplify some code. by Chris Lattner · 16 years ago
  87. e6db3b0 formatting by Chris Lattner · 16 years ago
  88. e94ca9e4 Extend DeclarationName to support C++ overloaded operators, e.g., by Douglas Gregor · 16 years ago
  89. a11f42f Implement effects of 'mutable', and a few comments from Chris on its parsing. by Sebastian Redl · 16 years ago
  90. 10bd368 Eliminate all of the placeholder identifiers used for constructors, by Douglas Gregor · 16 years ago
  91. 2def483 Updated IdentifierResolver to deal with DeclarationNames. The names of by Douglas Gregor · 16 years ago
  92. ca354fa Implement rdar://6319320: give a good diagnostic for cases where people by Chris Lattner · 16 years ago
  93. 2e1cd42 Introduction the DeclarationName class, as a single, general method of by Douglas Gregor · 16 years ago
  94. 529569e Address some comments Eli had. by Anders Carlsson · 16 years ago
  95. a25bd55 use HandleConversionToBool() to check if a given cond is foldable (per Eli's comment) by Nuno Lopes · 16 years ago
  96. ccc3fce More complex float evaluator support. by Anders Carlsson · 16 years ago
  97. 6ee7aa1 rename Expr::tryEvaluate to Expr::Evaluate. by Chris Lattner · 16 years ago
  98. 9ad16ae Add very limited support for evaluating complex floats. by Anders Carlsson · 16 years ago
  99. f9ef0c6 fix folding of comma if given a non-constant operand. by Nuno Lopes · 16 years ago
  100. ca7c2ea make IntExprEvaluator fold the ?: operator by Nuno Lopes · 16 years ago