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