1. b2f6820 Added a new attribute, objc_root_class, which informs the compiler when a root class is intentionally declared. by Patrick Beard · 12 years ago
  2. aba3f0f MIPS: Move tests check float ABI macros definitions to the more appropriate place. by Simon Atanasyan · 12 years ago
  3. 9f31437 Fix using Clang as a cross compiler installed on a host machine and not by Chandler Carruth · 12 years ago
  4. cf2fa2f Fixed scoping error for late parsed attributes in nested classes. by DeLesley Hutchins · 12 years ago
  5. 7a52180 MIPS: Add tests for predefined macros for MIPS targets. by Simon Atanasyan · 12 years ago
  6. 673720d Fix diagnostic text for r154163. by David Blaikie · 12 years ago
  7. 9df1b96 Restrict fixit for missing 'class' in template template parameters. by David Blaikie · 12 years ago
  8. 7947bb1 [analyzer]Fix false positive: pointer might escape through CG*WithData. by Anna Zaks · 12 years ago
  9. bf9658c Point the caret at the error for the 'expected namespace name' diagnostic in by Richard Smith · 12 years ago
  10. bc1029b Implement C90 pedantic warning for duplicate declaration specifiers which are duplicated via a typedef. Patch by Tim Northover. by Eli Friedman · 12 years ago
  11. ae916a1 Properly implement the C rules for composite types for qualified pointers in conditionals. Patch by Tim Northover. by Eli Friedman · 12 years ago
  12. bf393be objective-c: Don't warn when a category does not implement a method by Fariborz Jahanian · 12 years ago
  13. 856183c Enhance testing a bit to make sure that we're omitting the by Eric Christopher · 12 years ago
  14. 78af8fd Only emit the getter and setter names if they're not the default by Eric Christopher · 12 years ago
  15. 87b9c03 Make the variant of __builtin_shufflevector that takes the shuffle indexes as a vector actually usable. Patch by David Neto. PR12465. by Eli Friedman · 12 years ago
  16. e47029a Temporary workaround for bug#12457: turn the 'constexpr function never produces by Richard Smith · 12 years ago
  17. 85ff969 [Lex] Add support for 'user specified system frameworks' (see test case). by Daniel Dunbar · 12 years ago
  18. a823545 Improve & simplify diagnostic for missing 'class' in template template parameter. by David Blaikie · 12 years ago
  19. b98b998 Handle symbolicating a reference in an initializer expression that we don't understand. by Ted Kremenek · 12 years ago
  20. 04a18c9 Teach ObjCContainersChecker that the array passed to CFArrayGetValueAtIndex might not be a symbolic value. by Ted Kremenek · 12 years ago
  21. bb3d20f Do not crash in the callgraph construction when encountering deleted function definitions. Fixes <rdar://problem/11178609>. by Ted Kremenek · 12 years ago
  22. a85cf39 Improve diagnostics for invalid use of non-static members / this: by Richard Smith · 12 years ago
  23. 4fd05dc Add triples to these tests to keep them working on Windows, by Richard Smith · 12 years ago
  24. 69f50e7 Fix assertions and wrong output from StmtPrinter's string literal printing. by Richard Smith · 12 years ago
  25. e31b8fb Enable warn_impcast_literal_float_to_integer by default. by David Blaikie · 12 years ago
  26. 371a0c8 clang/test/Tooling/clang-check.cpp: Mark it as XFAIL also on cygwin. by NAKAMURA Takumi · 12 years ago
  27. 5b4bf13 Allow a conversion from the empty initializer list {} to an by Douglas Gregor · 12 years ago
  28. 3953911 Honor -fno-pic, -fno-PIC, -fno-pie, -fno-PIE. by Nico Weber · 12 years ago
  29. 30fe6ba [driver] When using the -mfpmath= option, add an error message when trying to by Chad Rosier · 12 years ago
  30. 397f327 Hardcode a triple to prevent the test failing on targets which don't support __thread. by Richard Smith · 12 years ago
  31. b4051e7 Implement C++11 [temp.arg.nontype]'s permission to use the address of an object by Richard Smith · 12 years ago
  32. 7a938fa [driver] Create a new -mfpmath= option, which is used to control whether clang by Chad Rosier · 12 years ago
  33. 878f850 objc-arc: provide a warning when 'receiver' of a message is 'weak' by Fariborz Jahanian · 12 years ago
  34. bb811ca Look through chains of 'x = y = z' when employing silencing heuristics in the DeadStoresChecker. by Ted Kremenek · 12 years ago
  35. e982cc0 modern objc translator. Add more by Fariborz Jahanian · 12 years ago
  36. 0718952 Include the "issue context" (e.g. function or method) where a static analyzer issue occurred in the plist output. by Ted Kremenek · 12 years ago
  37. f54486a Move the computation of the lambda mangling information (mangling by Douglas Gregor · 12 years ago
  38. e1fde1d Simplify test a bit now that it's not actually running cc1plus. by Bob Wilson · 13 years ago
  39. e23d0b2 clang/test/Tooling/clang-check.cpp: Mark it as XFAIL mingw,msvc for now. by NAKAMURA Takumi · 13 years ago
  40. 9595dae Don't crash (assert failure) when generating blocks for C++ types with a non-const copy constructor. by David Chisnall · 13 years ago
  41. 43d5aac Add the dependency on clang-check to clang-test, so clang-check by Manuel Klimek · 13 years ago
  42. cb971c6 Adds a tooling library. by Manuel Klimek · 13 years ago
  43. c9aa9c0 Don't actually execute gcc during testing. by Benjamin Kramer · 13 years ago
  44. 6fb522e Add a testcase for svn r153854. by Bob Wilson · 13 years ago
  45. 5a5a971 For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is by Richard Smith · 13 years ago
  46. d280389 When performing template argument deduction for an initializer list, by Douglas Gregor · 13 years ago
  47. a9b55a4 Dependent-sequence initialization of a single element can be direct by Douglas Gregor · 13 years ago
  48. a06642a [preprocessor] In Preprocessor::CachingLex() check whether there were more tokens by Argyrios Kyrtzidis · 13 years ago
  49. e14ba2c When computing the conversion sequence in overload resolution by John McCall · 13 years ago
  50. 73f428c Enter an expression evaluation context when parsing by John McCall · 13 years ago
  51. 7b156dd Add feature check "cxx_local_type_template_args" describing support by Douglas Gregor · 13 years ago
  52. b0d06e2 Eliminate obvious use-after-free. Fixes PR12433 / <rdar://problem/11168333>. by Douglas Gregor · 13 years ago
  53. 173a37a Remove more redundant lookups. Add a new "all_lookups_iterator" which provides by Nick Lewycky · 13 years ago
  54. 893a6ea Don't treat synthesized ivars as being in the base class for the purpose of by Nick Lewycky · 13 years ago
  55. 6d858d9 Replace the workaround from r153445 with a proper fix. by Kaelyn Uhrain · 13 years ago
  56. b3f904f modern objective-c translator: rewriter linkage spec. // rdar://11169733 by Fariborz Jahanian · 13 years ago
  57. 14e6455 Correct handling of _Pragma macro inside a macro argument. by Argyrios Kyrtzidis · 13 years ago
  58. e62f048 [analyzer] Record the basic blocks covered by the analyzes run. by Anna Zaks · 13 years ago
  59. 0ea6164 Add more constraint registers for mips. by Eric Christopher · 13 years ago
  60. ea32047 Change location information for synthesized properties to be at the by Eric Christopher · 13 years ago
  61. 31b5762 Fix another false positive in RegionStore involving doing loads from symbolic offsets. We still don't by Ted Kremenek · 13 years ago
  62. e6af660 PR10217 diagnostic fix: don't say 'copy constructor' when we mean by Richard Smith · 13 years ago
  63. 5bdaac5 Finish PR10217: Ensure we say that a special member was implicitly, not by Richard Smith · 13 years ago
  64. 460ef13 Correct error recovery when missing 'class' in a template template parameter. by David Blaikie · 13 years ago
  65. 0f6931a PR12438: Profile a reference to a type template parameter by depth and index, by Richard Smith · 13 years ago
  66. 1c931be Implement DR1402: if a field or base class is not movable, the derived class's by Richard Smith · 13 years ago
  67. 582b395 Use -rewrite-legacy-objc as clang argument for translating by Fariborz Jahanian · 13 years ago
  68. c5a89a1 Basic semantic analysis support for inheriting constructor declarations in by Richard Smith · 13 years ago
  69. 70e24fc Properly handle explicit constructors in list-initialization. Fixes PR12120. by Sebastian Redl · 13 years ago
  70. d76e1cd [arcmt] When fixing the "unassigned init call" ARC error, make sure by Argyrios Kyrtzidis · 13 years ago
  71. d786f1a [libclang] Fix use-after-free bug when handling attributes indexing info. by Argyrios Kyrtzidis · 13 years ago
  72. 34ebe1e [libclang] Introduce clang_Cursor_getObjCSelectorIndex() function. by Argyrios Kyrtzidis · 13 years ago
  73. 355bba7 Make sure we unique static-local decls across multiple emissions of by John McCall · 13 years ago
  74. ba1da14 [libclang] Introduce clang_Cursor_getSpellingNameRange(). by Argyrios Kyrtzidis · 13 years ago
  75. 6c4c36c PR10217: Provide diagnostics explaining why an implicitly-deleted special by Richard Smith · 13 years ago
  76. 0f30a12 Revert r153723, and its follow-ups r153728 and r153733. by Chandler Carruth · 13 years ago
  77. 0f9b18e modern objective-c translator: writing numeric literals. // rdar://10803676 by Fariborz Jahanian · 13 years ago
  78. 8b0fa52 If we encounter a friend class template for which we cannot resolve by Douglas Gregor · 13 years ago
  79. 49d26d2 Do the static-locals thing properly in the face of unions and by John McCall · 13 years ago
  80. 5aeaca3 Correctly check argument types for some vector macros in smmintrin.h. Put parentheses around uses of vector macro arguments. by Craig Topper · 13 years ago
  81. 62a5c34 [analyzer]Malloc,RetainRelease: Allow pointer to escape via NSMapInsert. by Anna Zaks · 13 years ago
  82. 29bbd1a Handle placeholder expressions in an ObjC for-collection loop. by John McCall · 13 years ago
  83. 96579c4 Revert previous commit changing location information to see if this by Eric Christopher · 13 years ago
  84. 5228982 Add _mm_minpos_epu16 to smmintrin.h. Fixes PR12399. by Craig Topper · 13 years ago
  85. 100c649 Forbid the block and lambda copy-capture of __autoreleasing variables by John McCall · 13 years ago
  86. 5629646 Fix shuffle vector calculation for mm_permute_ps. Fixes PR 12401. by Craig Topper · 13 years ago
  87. 9993cc7 When emitting a static local variable in C++, handle by John McCall · 13 years ago
  88. 5fe61c6 ConstStructBuilder: fix offset math for base classes so it works correctly in general. Found by inspection. by Eli Friedman · 13 years ago
  89. 38ac243 Make sure we perform the relevant implied conversions correctly for ObjC methods with related result types. PR12384. by Eli Friedman · 13 years ago
  90. 9ee2002 Testcase for the previous commit. by Eric Christopher · 13 years ago
  91. 7435054 Change location information for synthesized properties to be at the by Eric Christopher · 13 years ago
  92. 84392d0 The UTF16 string referenced by a CFString should go into the __TEXT,__ustring by Bill Wendling · 13 years ago
  93. b085d89 Add info to ObjCPropertyRefExpr to indicate whether the dot syntax property by Argyrios Kyrtzidis · 13 years ago
  94. d046952 [libclang] A MemberRefExpr cursor for a property dot syntax should have as by Argyrios Kyrtzidis · 13 years ago
  95. 66373dd [libclang] Have c-index-test output more information about a cursor with -cursor-at: by Argyrios Kyrtzidis · 13 years ago
  96. 1ef28db Extend -Wc++11-narrowing to cover converted constant expressions as well as braced-initializers. <rdar://problem/11121178>. by Eli Friedman · 13 years ago
  97. 4b81e74 [analyzer] Add a malloc cpp test file. by Anna Zaks · 13 years ago
  98. 882784d Relax the test slightly so that it should pass on other people's computers. by David Chisnall · 13 years ago
  99. 17c8caf modern objc translator: additional test. by Fariborz Jahanian · 13 years ago
  100. 3a7d69b Call out to GCC-compatible runtime functions for atomic ops that we can't use by David Chisnall · 13 years ago