1. 774f9c7 Add codegen support for __null by Anders Carlsson · 16 years ago
  2. 80da19a Correct comments. by Zhongxing Xu · 16 years ago
  3. 605ad51 fix 80-col violation. by Zhongxing Xu · 16 years ago
  4. 76d19c8 Add ASTContext::getBaseElementType and use it in CodeGenFunction::EmitArraySubscriptExpr. by Anders Carlsson · 16 years ago
  5. 0dd0e37 Did not mean to commit this. by Anders Carlsson · 16 years ago
  6. 3bb57e8 Handle VLA indexing by Anders Carlsson · 16 years ago
  7. 82d4477 Add support for member references (E1.E2, E1->E2) with C++ semantics, by Douglas Gregor · 16 years ago
  8. e26cb43 Finish up saving original parameter type and by Fariborz Jahanian · 16 years ago
  9. a7babab Add case for the new AST node. by Fariborz Jahanian · 16 years ago
  10. 160e881 introducing ParmVarWithOriginalTypeDecl class to by Fariborz Jahanian · 16 years ago
  11. 320ac42 Strangely enough, name of ObjC class is not encoded into the by Fariborz Jahanian · 16 years ago
  12. 0cd547f More encoding support. This time for @encode of classes and bitfields. by Fariborz Jahanian · 16 years ago
  13. 8c3de80 Get rid of the old Expr::Evaluate variant. by Anders Carlsson · 16 years ago
  14. c867947 Several@encode bug fixes for ObjC. by Fariborz Jahanian · 16 years ago
  15. ea94484 Removed a slot in ObjCMemRegExpr used in code gen which did not belong there. by Fariborz Jahanian · 16 years ago
  16. 30fb1da Fix http://llvm.org/bugs/show_bug.cgi?id=3189. by Steve Naroff · 16 years ago
  17. c98406e fix leakage of var's initializers by Nuno Lopes · 16 years ago
  18. 355a868 fix a few more memory leaks: clean the ASTRecordLayouts, ASTObjCInterfaces and ASTRecordForInterface maps by Nuno Lopes · 16 years ago
  19. 0556b15 This patch will build the Records lazily per Steve's comments. by Fariborz Jahanian · 16 years ago
  20. f7bae35 Added comment to Steve's patch to clarify the case. by Fariborz Jahanian · 16 years ago
  21. f188f2f Fix <rdar://problem/6450964> clang on xcode: Assertion failed: (RecordForDecl && "lookupFieldDeclForIvar no storage for class"). by Steve Naroff · 16 years ago
  22. 0c3ab04 Make sure that enumerators show up within the enumeration declaration. Fixes. PR clang/3220 by Douglas Gregor · 16 years ago
  23. ad17e37 Make linkage-specifications hold on to all of their declarations by Douglas Gregor · 16 years ago
  24. 60f7df8 Warning fixes to operator precedence warnings. by Eli Friedman · 16 years ago
  25. 5196488 Remove tabs. by Nate Begeman · 16 years ago
  26. 0c06709 Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  27. cb8e803 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
  28. b921383 Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  29. 86008c0 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  30. 138f7bb Removed setRecordForDecl. Added a FIXME. by Fariborz Jahanian · 16 years ago
  31. 789e171 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
  32. ae64489 Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
  33. 1640bf2 dont call iterator::end() on every cycle and dont read already-deleted memory by Nuno Lopes · 16 years ago
  34. 8a03047 minor WS fix for the previous commit by Nuno Lopes · 16 years ago
  35. 8f3bb2a fix leakage of CXXSpecialName objects in DeclarationNameTable by Nuno Lopes · 16 years ago
  36. 0977239 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago
  37. 624921a Add storage layout to ObjC classes. by Fariborz Jahanian · 16 years ago
  38. 2a6a5b3 Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p by Chris Lattner · 16 years ago
  39. 1d0214b add a fixme. by Chris Lattner · 16 years ago
  40. 45e71bf implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
  41. a5f779dc Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago
  42. 3967762 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  43. 640a04b Actually distinguish between RecordDecl::field_iterator and RecordDecl::field_const_iterator, propagating the constness down to the FieldDecls. by Douglas Gregor · 16 years ago
  44. 8acb727 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  45. 28ceff7 The "real" fix for <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  46. a5d8461 Some cleanups to the dependent-types commit, as suggested by Sebastian by Douglas Gregor · 16 years ago
  47. da32905 Fix <rdar://problem/6424347> clang on xcode: Assertion failed: (0 && "unexpected type"), function mergeTypes, by Steve Naroff · 16 years ago
  48. 09e1b9e Fix <rdar://problem/6418623> Bogus block type compatibility warning. by Steve Naroff · 16 years ago
  49. 0b7716c Prevent bogus warning on unimplemented setter/getter when user by Fariborz Jahanian · 16 years ago
  50. 91dd9d3 Support for implementation of property in the case where by Fariborz Jahanian · 16 years ago
  51. c74ac3e Add preliminary CFG support for @throw. We basically treat it like a return statement. by Ted Kremenek · 16 years ago
  52. af15180 ObjCInterfaceDecl::lookupInstanceMethod() needs to look through a categories protocols. by Steve Naroff · 16 years ago
  53. 8b10a23 Workaround for PR3173. The fix is correct in the sense that if the enum by Eli Friedman · 16 years ago
  54. acad6d1 Use of properties declared in protocols in the category by Fariborz Jahanian · 16 years ago
  55. a133e26 Add support for calls to dependent names within templates, e.g., by Douglas Gregor · 16 years ago
  56. 1b21c7f Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  57. 17eb888 Fixed a comment. by Fariborz Jahanian · 16 years ago
  58. 6834228 This test checks for duplicate implementation of the same by Fariborz Jahanian · 16 years ago
  59. dd86106 Representation of template type parameters and non-type template by Douglas Gregor · 16 years ago
  60. 4ab88da This wasn't such a good idea after all as it broke some tests. by Anders Carlsson · 16 years ago
  61. 8f92cdd Handle __builtin___CFStringMakeConstantString in Expr::Evaluate. by Anders Carlsson · 16 years ago
  62. 0e94841 Several things... by Steve Naroff · 16 years ago
  63. 9f81c3f 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
  64. 516432a Correct pretty printing of array new expressions. by Sebastian Redl · 16 years ago
  65. 66df3ef Handle new by passing the Declaration to the Action, not a processed type. by Sebastian Redl · 16 years ago
  66. ecfbb49 This patch corrects problem in searching for a setter/getter method for by Fariborz Jahanian · 16 years ago
  67. 110be84 -Add several ObjC types to Decl::getDeclKindName(), a useful debug hook. by Steve Naroff · 16 years ago
  68. fa60401 Use EmitInt, not Emit, to emit unsigned values by Douglas Gregor · 16 years ago
  69. 197f6f7 Generate the correct results for the comma expression. Fixes PR3123. by Anders Carlsson · 16 years ago
  70. f8aa870 Revert change that made isNullPointerConstant start emitting warnings. We don't want that :) by Anders Carlsson · 16 years ago
  71. fbdd2e6 Remove dead code. by Anders Carlsson · 16 years ago
  72. 2ce7c3d Add a new variant of isNullConstantExpr that returns an EvalResult. by Anders Carlsson · 16 years ago
  73. b1112ad Emit the correct diagnostic when a comma is in an ICE. by Anders Carlsson · 16 years ago
  74. 38bb18c Change the diagnostics that the evaluator reports to be of type NOTE. by Anders Carlsson · 16 years ago
  75. 6c1a9e2 Replace the isEvaluated bool with a ShortCircuit int, making it easier to handle recursion by Anders Carlsson · 16 years ago
  76. fa76d82 Pass the expression to the Error and Extension methods. by Anders Carlsson · 16 years ago
  77. 7f5a96e Add a new variant of Evaluate and reimplement the old Evaluate in terms of the new. by Anders Carlsson · 16 years ago
  78. 501da1f General cleanup, evaluate the RHS of a logical op even if the LHS will give us the result. by Anders Carlsson · 16 years ago
  79. dd8d41f EvalInfo now holds a reference to an EvalResult struct. by Anders Carlsson · 16 years ago
  80. ad4b379 Implement the GNU __null extension by Douglas Gregor · 16 years ago
  81. 48a3432 Switch QualType to use llvm::PointerIntPair internally to do the pointer by Chris Lattner · 16 years ago
  82. 74bf701 remove debug-only assertion in the complex float evaluator as it makes some real apps crash by Nuno Lopes · 16 years ago
  83. 4739da1 Refactored checking on readonly property into a method. by Fariborz Jahanian · 16 years ago
  84. 48b1a13 Patch to allow over-riding of readonly property to by Fariborz Jahanian · 16 years ago
  85. 3addf9d Remove more #ifdeffed code by Anders Carlsson · 16 years ago
  86. d19e99e Fix CFG bug where the 'increment' block for a 'for' statement would not be by Ted Kremenek · 16 years ago
  87. a7fa2aa Reimplement Expr::isConstantExpr in terms of Expr::Evaluate. This fixes PR2832. by Anders Carlsson · 16 years ago
  88. e284ebe The address of a variable is only constant if the variable has global storage. by Anders Carlsson · 16 years ago
  89. 8bce31a Fix bug in the constant evaluator. Fixes PR3115. by Anders Carlsson · 16 years ago
  90. 6c5ec62 Migrate some stuff from NamedDecl::getName() to by Chris Lattner · 16 years ago
  91. d120b9e Rename NamedDecl::getIdentifierName() to ::getNameAsCString() and make it by Chris Lattner · 16 years ago
  92. 85fb384 simplify this code. by Chris Lattner · 16 years ago
  93. 3a8f294 Rename Selector::getName() to Selector::getAsString(), and add by Chris Lattner · 16 years ago
  94. cb6a2e8 Return false if we encounter a type we can't handle. by Anders Carlsson · 16 years ago
  95. b96c206 Case values must be evaluated by Anders Carlsson · 16 years ago
  96. e8bd9f2 Use Expr::Evaluate for case statements. Fixes PR2525 by Anders Carlsson · 16 years ago
  97. c05da42 Support for implicit property assignment. Error assigning to by Fariborz Jahanian · 16 years ago
  98. f18d4c8 New AST node to access "implicit" setter/getter using property dor syntax. by Fariborz Jahanian · 16 years ago
  99. 19fec9d Implementation of new and delete parsing and sema. by Sebastian Redl · 16 years ago
  100. cf4a889 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