1. 355a868 fix a few more memory leaks: clean the ASTRecordLayouts, ASTObjCInterfaces and ASTRecordForInterface maps by Nuno Lopes · 16 years ago
  2. ff9fa8f Oops, accidentally commited the wrong version of the test (original by Eli Friedman · 16 years ago
  3. 2004fb6 Patch to re-implement duplicate ivar checking by Fariborz Jahanian · 16 years ago
  4. ba932e6 Do proper recovery from an invalid switch condiition. Fixes PR3229. by Eli Friedman · 16 years ago
  5. 1d8e3f9 CF-retain/release checker: by Ted Kremenek · 16 years ago
  6. 0556b15 This patch will build the Records lazily per Steve's comments. by Fariborz Jahanian · 16 years ago
  7. 71b94b3 add a dropped word back by Chris Lattner · 16 years ago
  8. 7aa9ff9 Updated checker build. by Ted Kremenek · 16 years ago
  9. 58a26bf Fix <rdar://problem/6451816>: by Ted Kremenek · 16 years ago
  10. 542c34d Add pretty-printing for AnonTypedRegion. by Ted Kremenek · 16 years ago
  11. e64d6d4 Shadow CurPtr with a local variable in ReadToken. by Ted Kremenek · 16 years ago
  12. f7bae35 Added comment to Steve's patch to clarify the case. by Fariborz Jahanian · 16 years ago
  13. ca328c3 Consolidated property check into property-typecheck-1.m file. by Fariborz Jahanian · 16 years ago
  14. 4b00d56 Make the injected-class-name of a C++ class a separate RecordDecl from the class itself, with a different scope. This eliminates some ownership issues, so that the RecordDecl only lives in a single context by Douglas Gregor · 16 years ago
  15. 746a24c Remove the crufty reverse_decl_iterator by Douglas Gregor · 16 years ago
  16. 9dd88c7 Removed the warning by Douglas Gregor · 16 years ago
  17. a9dc026 Remove rewriter dependency on 'nil' macro (used when rewriting for(...)) by Steve Naroff · 16 years ago
  18. f188f2f Fix <rdar://problem/6450964> clang on xcode: Assertion failed: (RecordForDecl && "lookupFieldDeclForIvar no storage for class"). by Steve Naroff · 16 years ago
  19. b0b42f6 diagnose C99 6.9.1p5, C arguments in definitions that are lacking by Chris Lattner · 16 years ago
  20. 9bb9abf Move the other Sema::ActOnLinkageSpec to SemaDeclCXX. by Chris Lattner · 16 years ago
  21. f58d52b Move Sema::ActOnLinkageSpec to SemaDeclCXX. by Chris Lattner · 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. 4b0a044 Fix PrintParserCallbacks for the new ActOnLinkageSpec actions by Douglas Gregor · 16 years ago
  24. 8f9b1b2 Semantics of @protocol attributes. by Fariborz Jahanian · 16 years ago
  25. ee8d497 Tweaks to allow us to rewrite with -x=objective-c++ enabled. by Steve Naroff · 16 years ago
  26. 1a68ecf remove debug stmt, sorry.. by Nuno Lopes · 16 years ago
  27. df23952 fix PR 3222: allow one to get the address of a global function in C++ by Nuno Lopes · 16 years ago
  28. ad17e37 Make linkage-specifications hold on to all of their declarations by Douglas Gregor · 16 years ago
  29. 268be24 Fix crash with -ast-dump in C++. by Eli Friedman · 16 years ago
  30. 4bfcda2 Add new GRWorkList class that uses two queues: by Ted Kremenek · 16 years ago
  31. e27c37a ProgramPoint: by Ted Kremenek · 16 years ago
  32. 605de8d Delay parsing of default arguments of member functions until the class by Douglas Gregor · 16 years ago
  33. 70c167d Silence a couple more operator precedence warnings; this shouldn't by Eli Friedman · 16 years ago
  34. 60f7df8 Warning fixes to operator precedence warnings. by Eli Friedman · 16 years ago
  35. 5196488 Remove tabs. by Nate Begeman · 16 years ago
  36. f8bfa0c Patch to check for ObjC's property type. by Fariborz Jahanian · 16 years ago
  37. 44fe1e3 Fix <rdar://problem/6445502> clang ObjC rewriter: _Block_release has wrong parameter type in preamble by Steve Naroff · 16 years ago
  38. b6bf544 Partial fix for qualified name lookup, such that the lookup of N in by Douglas Gregor · 16 years ago
  39. d980b14 Implement RegionStoreManager::Remove(). by Zhongxing Xu · 16 years ago
  40. 0c06709 Diagnose that ivars in current and super class may not by Fariborz Jahanian · 16 years ago
  41. 24effa8 Make name lookup when we're inside a declarator's scope, such as ClassName::func, work with the new unqualified name lookup code. Test it with default arguments in out-of-line member definitions by Douglas Gregor · 16 years ago
  42. ff2467a Added a test for default arguments added to out-of-line member by Douglas Gregor · 16 years ago
  43. c5cbc24 Diagnose erroneous uses of out-of-line member definitions and scope by Douglas Gregor · 16 years ago
  44. e658bf5 Fix for PR3212: don't descend into C++ operator overloading code for C by Eli Friedman · 16 years ago
  45. 6422de6 Make error handling for va_start a bit more robust. Fixes PR3213. by Eli Friedman · 16 years ago
  46. cb8e803 Name of addLayoutToClass is confusing as no layout calculation by Fariborz Jahanian · 16 years ago
  47. b921383 Place constructors and destructors into the DeclContext of the class, by Douglas Gregor · 16 years ago
  48. a2549ec And a test case for my previous patch. by Fariborz Jahanian · 16 years ago
  49. 86008c0 Code gen. for ivar references; including bitfield ivars. by Fariborz Jahanian · 16 years ago
  50. 5f9fb3f Preprocessor: Allocate MacroInfo objects using a BumpPtrAllocator instead using new/delete. This speeds up -Eonly on Cocoa.h using the regular lexer by 1.8% and the PTHLexer by 3%. by Ted Kremenek · 16 years ago
  51. 41cf015 Fix regression in handling sizeof(void) in the static analyzer. by Ted Kremenek · 16 years ago
  52. 138f7bb Removed setRecordForDecl. Added a FIXME. by Fariborz Jahanian · 16 years ago
  53. 789e171 Don't double-destroy constructors defined out-of-line. This is a by Douglas Gregor · 16 years ago
  54. ae64489 Create new EnumDecl nodes for redeclarations of enums, linking them by Douglas Gregor · 16 years ago
  55. 1640bf2 dont call iterator::end() on every cycle and dont read already-deleted memory by Nuno Lopes · 16 years ago
  56. 8a03047 minor WS fix for the previous commit by Nuno Lopes · 16 years ago
  57. 8f3bb2a fix leakage of CXXSpecialName objects in DeclarationNameTable by Nuno Lopes · 16 years ago
  58. 9d9fd88 I think we should getRValueType here. The lvaluetype of an array region is 'pointer to array'. by Zhongxing Xu · 16 years ago
  59. b193b89 Updated checker build. by Ted Kremenek · 16 years ago
  60. c217619 Store the size of the EH stack inside each BreakContinue struct so we know when a break/continue won't cross a try block. by Anders Carlsson · 16 years ago
  61. 0977239 Patch for ObjCIvarRefExpr containing the field by Fariborz Jahanian · 16 years ago
  62. f5da325 MemRegion: by Ted Kremenek · 16 years ago
  63. 624921a Add storage layout to ObjC classes. by Fariborz Jahanian · 16 years ago
  64. a833cc6 eliminate the isCXXNamedOperator function and some string compares and by Chris Lattner · 16 years ago
  65. deeefde Temporarily XFAIL these tests. by Ted Kremenek · 16 years ago
  66. 2c0de35 A series of cleanups/fixes motivated by <rdar://problem/6442306>: by Ted Kremenek · 16 years ago
  67. b9d7c66 disable Anders' recent VLA patch, this fixes PR3209. by Chris Lattner · 16 years ago
  68. 91f9b0a Some utilities for using the smart pointers in Actions, especially Sema. Convert a few functions. by Sebastian Redl · 16 years ago
  69. a2deb43 Convert remaining expression parsers to smart pointers. Now on to the Action connection. by Sebastian Redl · 16 years ago
  70. 473d839 stdlib.h is the wrong header for printf, and introduces test-breaking definitions of inlines on Linux by Sebastian Redl · 16 years ago
  71. 6bb57ee Add /Za to all MSVC build of a clang libraries. by Cédric Venet · 16 years ago
  72. be3e84f PTH: Added minor 'sibling jumping' optimization for iterating over the side table used for fast preprocessor block skipping. This has a minor performance improvement when preprocessing Cocoa.h, but can have some wins in pathologic cases. by Ted Kremenek · 16 years ago
  73. 5282b95 Fix <rdar://problem/6435837> clang ObjC rewriter: use Block_release instead of Block_destroy. by Steve Naroff · 16 years ago
  74. f5dfe9c fix a buggy fall through that caused a crash-on-invalid. rdar://6248081 by Chris Lattner · 16 years ago
  75. 455523c Add test case for using mmintrin (and making sure that inlining is by Daniel Dunbar · 16 years ago
  76. 81caece Force i[0-9]86 to i386 when using LLVM_HOSTTRIPLE. by Daniel Dunbar · 16 years ago
  77. c07091c Added PTH optimization to not process entire blocks of tokens that appear in skipped preprocessor blocks. This improves PTH speed by 6%. The code for this optimization itself is not very optimized, and will get cleaned up. by Ted Kremenek · 16 years ago
  78. 0b5038d Enhance PTH preprocessor-condition-block side table to track #elseinformation as well. by Ted Kremenek · 16 years ago
  79. 2a6a5b3 Implement the final (hopefully) wrinkle to i-c-e + builtin_constant_p by Chris Lattner · 16 years ago
  80. 9834104 Enable out-of-line definitions of C++ constructors and destructors by Douglas Gregor · 16 years ago
  81. 9be6aaf Implement allocation and sizeof VLAs. This is very basic for now. by Anders Carlsson · 16 years ago
  82. c369780 rdar://6060752 - don't warn about trigraphs in bcpl-style comments by Chris Lattner · 16 years ago
  83. c8d7a40 fix breakage I introduced in r60938 by Chris Lattner · 16 years ago
  84. eb67c0b Add test of enumerator types by Douglas Gregor · 16 years ago
  85. 32aa0c2 Add map of VLA types and their sizes by Anders Carlsson · 16 years ago
  86. 819e308 silence warning in release-asserts mode about unused variable, also by Chris Lattner · 16 years ago
  87. b387287 fix thought-o by Chris Lattner · 16 years ago
  88. 7ed37ef merge these testcases into one file. by Chris Lattner · 16 years ago
  89. 1d0214b add a fixme. by Chris Lattner · 16 years ago
  90. 45e71bf implement rdar://6091492 - ?: with __builtin_constant_p as the operand is an i-c-e. by Chris Lattner · 16 years ago
  91. a82444d use smarter error recovery for do/while. by Chris Lattner · 16 years ago
  92. f959397 apply the new error recovery smarts we have for if's to while's and switch's. by Chris Lattner · 16 years ago
  93. d42f977 rename recovery-3 to recovery.c by Chris Lattner · 16 years ago
  94. e309d03 merge recovery-1 into recovery-3. by Chris Lattner · 16 years ago
  95. 3651bf6 merge recovery-2.c into recovery-3.c. by Chris Lattner · 16 years ago
  96. cde12fd minor refactoring of ParseParenExpression by Chris Lattner · 16 years ago
  97. 9b937e5 add expected diag by Chris Lattner · 16 years ago
  98. a6fcf77 add ownership.h to xcode project by Chris Lattner · 16 years ago
  99. 438ddd8 Work in preparation for VLAs. Make sure to restore the stack if necessary (Saving the stack isn't implemented right now :) by Anders Carlsson · 16 years ago
  100. a5f779dc Fix rdar://6095061 - gcc allows __builtin_choose_expr as an lvalue by Chris Lattner · 16 years ago