1. 7b156dd Add feature check "cxx_local_type_template_args" describing support by Douglas Gregor · 12 years ago
  2. b0d06e2 Eliminate obvious use-after-free. Fixes PR12433 / <rdar://problem/11168333>. by Douglas Gregor · 12 years ago
  3. 173a37a Remove more redundant lookups. Add a new "all_lookups_iterator" which provides by Nick Lewycky · 12 years ago
  4. 893a6ea Don't treat synthesized ivars as being in the base class for the purpose of by Nick Lewycky · 12 years ago
  5. 6d858d9 Replace the workaround from r153445 with a proper fix. by Kaelyn Uhrain · 12 years ago
  6. b3f904f modern objective-c translator: rewriter linkage spec. // rdar://11169733 by Fariborz Jahanian · 12 years ago
  7. 14e6455 Correct handling of _Pragma macro inside a macro argument. by Argyrios Kyrtzidis · 12 years ago
  8. c8443e5 Rework ProgramPoint to bit-mangle the 'Kind' into both Data pointers and the LocationContext. After switching to PointerIntPair, it didn't look like a safe assumption to use the lower 3 bits of the LocationContext* field. Thanks to Jordy Rose and Benjamin Kramer for their feedback. by Ted Kremenek · 12 years ago
  9. e62f048 [analyzer] Record the basic blocks covered by the analyzes run. by Anna Zaks · 12 years ago
  10. 0ea6164 Add more constraint registers for mips. by Eric Christopher · 12 years ago
  11. ea32047 Change location information for synthesized properties to be at the by Eric Christopher · 12 years ago
  12. 31b5762 Fix another false positive in RegionStore involving doing loads from symbolic offsets. We still don't by Ted Kremenek · 12 years ago
  13. d9b7955 Fix potential null dereference in the static analyzer when inlining a call that has already been inlined. Unfortunately I have no test case. by Ted Kremenek · 12 years ago
  14. f30c0a9 Reduce static analyzer memory usage by about 4% by packing the ProgramPoing 'Kind' field into the spare bits of other fields. by Ted Kremenek · 12 years ago
  15. e6af660 PR10217 diagnostic fix: don't say 'copy constructor' when we mean by Richard Smith · 12 years ago
  16. 219c2e2 Remove windows line endings. by David Blaikie · 12 years ago
  17. 5bdaac5 Finish PR10217: Ensure we say that a special member was implicitly, not by Richard Smith · 12 years ago
  18. 460ef13 Correct error recovery when missing 'class' in a template template parameter. by David Blaikie · 12 years ago
  19. e7d0bbf Silence -Wunused-variable in -Asserts build by Matt Beaumont-Gay · 12 years ago
  20. 0f6931a PR12438: Profile a reference to a type template parameter by depth and index, by Richard Smith · 12 years ago
  21. 1c931be Implement DR1402: if a field or base class is not movable, the derived class's by Richard Smith · 12 years ago
  22. 582b395 Use -rewrite-legacy-objc as clang argument for translating by Fariborz Jahanian · 12 years ago
  23. 99d43b4 Fix build by passing in the needed variable after r153860. by Bill Wendling · 12 years ago
  24. c5a89a1 Basic semantic analysis support for inheriting constructor declarations in by Richard Smith · 12 years ago
  25. 651f3d4 Ignore unused --serialize-diagnostics option when using llvm-gcc. by Bob Wilson · 12 years ago
  26. 70e24fc Properly handle explicit constructors in list-initialization. Fixes PR12120. by Sebastian Redl · 12 years ago
  27. 4a5f724 Analyzer: Store BugReports directly in a ilist instead of adding another layer of inderection with std::list by Benjamin Kramer · 12 years ago
  28. e2e8768 Fixed MacroInfo definition range for function like macros with empty body. by Abramo Bagnara · 12 years ago
  29. 6c235bc Remove unused but set variable. by Benjamin Kramer · 12 years ago
  30. d76e1cd [arcmt] When fixing the "unassigned init call" ARC error, make sure by Argyrios Kyrtzidis · 12 years ago
  31. d786f1a [libclang] Fix use-after-free bug when handling attributes indexing info. by Argyrios Kyrtzidis · 12 years ago
  32. 86cff60 modern objective-c translator: writing container by Fariborz Jahanian · 12 years ago
  33. 34ebe1e [libclang] Introduce clang_Cursor_getObjCSelectorIndex() function. by Argyrios Kyrtzidis · 12 years ago
  34. 50651b9 Fix a pair of invalidation bugs when emitting protocol definitions by John McCall · 12 years ago
  35. 355bba7 Make sure we unique static-local decls across multiple emissions of by John McCall · 12 years ago
  36. ba1da14 [libclang] Introduce clang_Cursor_getSpellingNameRange(). by Argyrios Kyrtzidis · 12 years ago
  37. 6c4c36c PR10217: Provide diagnostics explaining why an implicitly-deleted special by Richard Smith · 12 years ago
  38. 0f30a12 Revert r153723, and its follow-ups r153728 and r153733. by Chandler Carruth · 12 years ago
  39. 40afb7d [driver] Create a new L_Group for language options and add the -std= option to by Chad Rosier · 12 years ago
  40. 0f9b18e modern objective-c translator: writing numeric literals. // rdar://10803676 by Fariborz Jahanian · 12 years ago
  41. 8b0fa52 If we encounter a friend class template for which we cannot resolve by Douglas Gregor · 12 years ago
  42. 49d26d2 Do the static-locals thing properly in the face of unions and by John McCall · 12 years ago
  43. 5aeaca3 Correctly check argument types for some vector macros in smmintrin.h. Put parentheses around uses of vector macro arguments. by Craig Topper · 12 years ago
  44. 62a5c34 [analyzer]Malloc,RetainRelease: Allow pointer to escape via NSMapInsert. by Anna Zaks · 12 years ago
  45. 3bbd8cd [analyzer] Do not inline functions which previously reached max block count. by Anna Zaks · 12 years ago
  46. 29bbd1a Handle placeholder expressions in an ObjC for-collection loop. by John McCall · 12 years ago
  47. 26945ad ItaniumCXXABI.cpp: Don't use nullptr. Clang source tree should be pre-c++11-compatible. by NAKAMURA Takumi · 12 years ago
  48. 96579c4 Revert previous commit changing location information to see if this by Eric Christopher · 12 years ago
  49. 5228982 Add _mm_minpos_epu16 to smmintrin.h. Fixes PR12399. by Craig Topper · 12 years ago
  50. 100c649 Forbid the block and lambda copy-capture of __autoreleasing variables by John McCall · 12 years ago
  51. 5629646 Fix shuffle vector calculation for mm_permute_ps. Fixes PR 12401. by Craig Topper · 12 years ago
  52. 9993cc7 When emitting a static local variable in C++, handle by John McCall · 12 years ago
  53. 56ea377 Add a note about a missing optimization in the case of virtual inheritance. by John McCall · 12 years ago
  54. 3754f96 Missing piece of r153720: make sure the vtable pointer is handled correctly. by Eli Friedman · 12 years ago
  55. 5fe61c6 ConstStructBuilder: fix offset math for base classes so it works correctly in general. Found by inspection. by Eli Friedman · 12 years ago
  56. 38ac243 Make sure we perform the relevant implied conversions correctly for ObjC methods with related result types. PR12384. by Eli Friedman · 12 years ago
  57. 9ee2002 Testcase for the previous commit. by Eric Christopher · 12 years ago
  58. 7435054 Change location information for synthesized properties to be at the by Eric Christopher · 12 years ago
  59. 84392d0 The UTF16 string referenced by a CFString should go into the __TEXT,__ustring by Bill Wendling · 12 years ago
  60. b085d89 Add info to ObjCPropertyRefExpr to indicate whether the dot syntax property by Argyrios Kyrtzidis · 12 years ago
  61. d046952 [libclang] A MemberRefExpr cursor for a property dot syntax should have as by Argyrios Kyrtzidis · 12 years ago
  62. 66373dd [libclang] Have c-index-test output more information about a cursor with -cursor-at: by Argyrios Kyrtzidis · 12 years ago
  63. 1ef28db Extend -Wc++11-narrowing to cover converted constant expressions as well as braced-initializers. <rdar://problem/11121178>. by Eli Friedman · 12 years ago
  64. 4b81e74 [analyzer] Add a malloc cpp test file. by Anna Zaks · 12 years ago
  65. 8322c23 Fix whitespace. by Bill Wendling · 12 years ago
  66. 6903313 ARM backend knows about cortex-m4. The front end should too. by Jim Grosbach · 12 years ago
  67. 868e985 modern objc translator: avoid some duplicate declarations. by Fariborz Jahanian · 12 years ago
  68. df8dc86 Refactor special member function deletion. No functionality change. by Richard Smith · 12 years ago
  69. 882784d Relax the test slightly so that it should pass on other people's computers. by David Chisnall · 12 years ago
  70. 17c8caf modern objc translator: additional test. by Fariborz Jahanian · 12 years ago
  71. 3a7d69b Call out to GCC-compatible runtime functions for atomic ops that we can't use by David Chisnall · 12 years ago
  72. 2ebb98a Pass parameters in the correct order when assembling an AtomicExpr. by David Chisnall · 12 years ago
  73. 297976d modern objective-c translator: fix up assortment of by Fariborz Jahanian · 12 years ago
  74. 649b4a1 Revert r153613 as it's causing large compile-time regressions on the nightly testers. by Chad Rosier · 12 years ago
  75. ecae596 Go back to using just the selector name for the getter and setter by Eric Christopher · 12 years ago
  76. 16098f3 Tidy. by Eric Christopher · 12 years ago
  77. c0b6dbe Make ModuleMapParser own its TargetInfo, so it doesn't get leaked. by Benjamin Kramer · 12 years ago
  78. 51c0371 Add support for objc property decls according to the page at: by Eric Christopher · 12 years ago
  79. be5ff2f unwind.h fix for -fvisibility=hidden users. This fixes firefox build in a system by Rafael Espindola · 12 years ago
  80. 52f10d5 Don't try to parse a malformed parameter list after a constructor or operator by Richard Smith · 12 years ago
  81. 9988f28 Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-case by Richard Smith · 12 years ago
  82. 0fd4a68 [arcmt] Fix a bug where a property in a class extension, that did not exist by Argyrios Kyrtzidis · 12 years ago
  83. dde3bdb Define __LITTLE_ENDIAN__ for le32, since "le" stands for little endian. by Jan Wen Voung · 12 years ago
  84. 57cd1b8 When we can't prove that the target of an aggregate copy is by John McCall · 12 years ago
  85. b684a42 Fix typo in my last patch. by Fariborz Jahanian · 12 years ago
  86. f962eb4 [libclang] Fix CIndexer::isOptEnabled(); not sure what I was thinking there. by Argyrios Kyrtzidis · 12 years ago
  87. b47dbcb [analyzer] Enable retry exhausted without inlining by default. by Anna Zaks · 12 years ago
  88. fb02784 Fix the type of wchar_t on Solaris. by David Chisnall · 12 years ago
  89. a78eca2 objective-c: Improve diagnostics and by Fariborz Jahanian · 12 years ago
  90. 253955c [analyser] Stats checker: do not mark a node as exhausted if we will by Anna Zaks · 12 years ago
  91. 64ee9d0 [analyzer] Refactor: Use Decl when determining if the Block belongs to by Anna Zaks · 12 years ago
  92. a0786c9 CodeGen/CGDeclCXX.cpp: Twine-ize CreateGlobalInitOrDestructFunction(). by NAKAMURA Takumi · 12 years ago
  93. 6960587 Unify and fix our checking of C++ [dcl.meaning]p1's requirements by Douglas Gregor · 12 years ago
  94. 1e1e972 When we form a new function/class template specialization, we first by Douglas Gregor · 12 years ago
  95. 6488dc3 Fix suspicious comparison reported by PVS-Studio! by Ted Kremenek · 12 years ago
  96. 81b5ac3 [libclang] Rename setBackGroundPriority -> setThreadBackgroundPriority. by Argyrios Kyrtzidis · 12 years ago
  97. 8e7c48a [libclang] Fix gcc error. by Argyrios Kyrtzidis · 12 years ago
  98. fdc1795 [libclang] Introduce options to control the priority for the threads by Argyrios Kyrtzidis · 12 years ago
  99. bbca564 [libclang] Put the CIndexer class in the clang namespace instead of having by Argyrios Kyrtzidis · 12 years ago
  100. 142bcb5 [libclang] For clang_saveTranslationUnit, if the AST to save has invalid nodes by Argyrios Kyrtzidis · 12 years ago