1. 331d2ec Introduce the notion of 'ignored' attributes, so that all attributes by Douglas Gregor · 12 years ago
  2. 3e7d31a Introduce the notion of an attribute that has no direct representation by Douglas Gregor · 12 years ago
  3. 0639c8b Fix same line doxycomments so they comment the adjacent field. by David Blaikie · 12 years ago
  4. 184be84 Implement the alternate spellings of attributes aligned (as "align") by Douglas Gregor · 12 years ago
  5. 769aa2d Driver: Turn the default value for -fmath-errno into a proper target hook and disable it by default on more platforms. by Benjamin Kramer · 12 years ago
  6. d6268ff Revert my optimization to AttributeList::getKind() in r155987; by Douglas Gregor · 12 years ago
  7. fb5825d Replace a ConsumeAnyToken() call with ConsumeToken() when we know by Douglas Gregor · 12 years ago
  8. b6dd605 Replace the StringSwitch in AttributeList::getKind(const by Douglas Gregor · 12 years ago
  9. 8049c44 Fix forwarding of -fpack-struct from driver to CC1, and add a test. by James Molloy · 12 years ago
  10. 3ecafe4 Don't try to instantiate std::list at an incomplete type; it's not by John McCall · 12 years ago
  11. 6d89b4b Fix cmake. Remaining two ClangCC1Options deps. by Andrew Trick · 12 years ago
  12. 6deb820 Disable our non-standard delayed parsing of exception specifications. Delaying by Richard Smith · 12 years ago
  13. 168d317 Speculatively fix windows cmake builders. by Andrew Trick · 12 years ago
  14. 11abcec Refine analyzer diagnostics by adding an expression "cone-of-influence" to reverse track interesting by Ted Kremenek · 12 years ago
  15. c8c2228 Unrevert r155951, reverted in r155962, with two changes: by Richard Smith · 12 years ago
  16. e7958da [analyzer] RetainRelease: Self assignment should not suppress a leak warning. by Anna Zaks · 12 years ago
  17. 12f3297 Try harder to recognize hidden tag type names in potential declarations instead by Kaelyn Uhrain · 12 years ago
  18. 2a6e30d [analyzer] Fix an assertion failure triggered by the analyzer buildbot. by Anna Zaks · 12 years ago
  19. 93c5a24 [analyzer] Fix the 'ptr = ptr' false negative in the Malloc checker. by Anna Zaks · 12 years ago
  20. b51c7f3 Revert "Fix RecursiveASTVisitor's data recursion to call the Traverse* functions if they" by Andrew Trick · 12 years ago
  21. ff310c7 Eliminate Sema::CompareMethodParamsInBaseAndSuper() entirely, by by Douglas Gregor · 12 years ago
  22. 8722ae8 The semantic checking that verifies whether an Objective-C method by Douglas Gregor · 12 years ago
  23. e4c043d Add a missing RequireCompleteType call when synthesizing properties. <rdar://problem/11333367>. by Eli Friedman · 12 years ago
  24. 3539b0c Utilize getLocStart()/getLocEnd() on my recent change. by Argyrios Kyrtzidis · 12 years ago
  25. e3ba298 Fix RecursiveASTVisitor's data recursion to call the Traverse* functions if they by Richard Smith · 12 years ago
  26. 140d0c6 Teach SValBuilder to handle casts of symbolic pointer values to an integer twice. Fixes <rdar://problem/11212866>. by Ted Kremenek · 12 years ago
  27. e0fdadf Clean up changes suggested by Douglas Gregor: by Patrick Beard · 12 years ago
  28. d8a1361 Fix test cases broken by 155936. by David Blaikie · 12 years ago
  29. 33e4a1d [analyzer] Test case reported for a reported false positive, now fixed. by Anna Zaks · 12 years ago
  30. e2241cb [analyzer] Construct a SymExpr even when the constraint solver cannot by Anna Zaks · 12 years ago
  31. 4e31b4d Extend the error about incompatible visibility attributes in different by Rafael Espindola · 12 years ago
  32. 294fe20 We don't need a lengthy quote from the wrong standard. by Douglas Gregor · 12 years ago
  33. 587e812 Add test cases for r155935. by Douglas Gregor · 12 years ago
  34. 10601a3 Revert r155933 by Douglas Gregor · 12 years ago
  35. ca2e1b7 Workaround a miscompile in 483.xalancbmk while we figure it out. by David Blaikie · 12 years ago
  36. 6c803f7 During block layout, after padding up to the max field alignment, by John McCall · 12 years ago
  37. edb45f0 Diagnostics should start with a lower-case letter. by Patrick Beard · 12 years ago
  38. 05e6076 In C++11 mode, implement the C++11 semantics for by Douglas Gregor · 12 years ago
  39. d53f697 Fix CMake build by Douglas Gregor · 12 years ago
  40. 6df1fa9 Test verified. by John McCall · 12 years ago
  41. d1c0c94 Spacing. by Chad Rosier · 12 years ago
  42. 8165605 Implement simplify_type traits for redecl_iterator. by David Blaikie · 12 years ago
  43. f720a2b Remove variables made dead by r155923 by David Blaikie · 12 years ago
  44. c5713cf Get rid of storelv4si builtin as it can be expressed directly. This is general by Chad Rosier · 12 years ago
  45. 1b9a688 Remove dead code found by static analyzer. by Ted Kremenek · 12 years ago
  46. cf18ae5 Push variable declaration into nested scope (the only place where it is used). Found by static analyzer. by Ted Kremenek · 12 years ago
  47. b68258f modern objective-c translation of private ivars. // rdar://11351299 by Fariborz Jahanian · 12 years ago
  48. 2a7b09d Restructure some of the member-pointer tests, implicitly by John McCall · 12 years ago
  49. bfd7a52 Unify Options.td and CC1Options.td, in a first step towards unifying the serialization logic in Frontend and Driver. by James Molloy · 12 years ago
  50. d1fda03 Make some helper functions static. by Benjamin Kramer · 12 years ago
  51. 287ab9f clang/test/CodeGenCXX: Fix two tests, destructors.cpp and microsoft-abi-array-cookies.cpp, for -Asserts. by NAKAMURA Takumi · 12 years ago
  52. 9ff009f clang/test/Rewriter: Remove XFAIL and add -U__declspec to other 9 tests. mingw32 tends to define built-in __declspec. by NAKAMURA Takumi · 12 years ago
  53. bb1a899 clang/test/Rewriter/rewrite-modern-extern-c-func-decl.mm: Remove XFAIL and add -U__declspec. mingw32 tends to define built-in __declspec. by NAKAMURA Takumi · 12 years ago
  54. c2244f6 Add a disclaimer to the new test, plus a user-declared ctor by John McCall · 12 years ago
  55. 441c623 Add support for laying out vtordisps according to our current by John McCall · 12 years ago
  56. a12f84d Fix compilation with mingw-w64. by Abramo Bagnara · 12 years ago
  57. 70d9b16 Enable AVX on AMD Bulldozer processors. by Craig Topper · 12 years ago
  58. 20bb175 Abstract the emission of global destructors into ABI-specific code by John McCall · 12 years ago
  59. 5729672 PR12710 - broken default argument handling for templates. by David Blaikie · 12 years ago
  60. 08c88db Place several uncovered warnings under warning flags, and tweak diagnostic output including the term "gc" (in lowercase). by Ted Kremenek · 12 years ago
  61. 2e7651d Remove some not-very-stable assumptions from this testcase. by John McCall · 12 years ago
  62. 537dd3a Teach RetainCountchecker about IORegistryEntrySearchCFProperty returning retained objects. I know there is an SDK enhancement request for this to have the cf_returns_retained annotation, so this is just a stop gap. by Ted Kremenek · 12 years ago
  63. e2b45e2 Refactor the C++ ABI code a little bit to take advantage of by John McCall · 12 years ago
  64. 95109d2 Fix use of uninitialized variable caught by GCC's -Wmaybe-uninitialized. by David Blaikie · 12 years ago
  65. 3a8ac07 When mangling a synthetic function declaration, we might not have by John McCall · 12 years ago
  66. 198ff65 Revert r155874. by Douglas Gregor · 12 years ago
  67. 9222cad Remove the unused DestroyAttrs, noticed by Michael Han. by Douglas Gregor · 12 years ago
  68. 6d3b93d Turn the mixed-sign-comparison diagnostic into a runtime behavior by Douglas Gregor · 12 years ago
  69. c30636a Print inline for inline namespaces, from Faisal Vali by Douglas Gregor · 12 years ago
  70. 1de801a Move a non portable test to FileCheck, from Jonathan Gray! by Douglas Gregor · 12 years ago
  71. b46d30f Move warn_cxx0x_right_shift_in_template_arg to CXX11Compat group, from by Douglas Gregor · 12 years ago
  72. 111263c Let's use the correct bool this time. by Kaelyn Uhrain · 12 years ago
  73. 1a200a8 A couple of very small tweaks suggested by Doug in reply to r155580 and r155163. by Kaelyn Uhrain · 12 years ago
  74. bd4fa45 Remove ref/value inconsistency in redecl_iterator. by David Blaikie · 12 years ago
  75. 8d59dee My first effort to do this more subtly failed, so elaborately by John McCall · 12 years ago
  76. 88db6a2 malloc size checker: Ignore const'ness of pointer types when determining of a sizeof() type is compatible with a pointed type. by Ted Kremenek · 12 years ago
  77. 4e1b292 Add support for openSUSE 12.2, from Ismail Donmez! by Douglas Gregor · 12 years ago
  78. 8e5900c clang_getCursorLexicalParent should return a translation unit cursor for declarations at the global scope, from Evan P. Fixes PR9083. by Douglas Gregor · 12 years ago
  79. aa54986 Remove -Wc++98-compat warning for an outrageously-rare circumstance of 'this' by Richard Smith · 12 years ago
  80. e720ce7 When going through references to check if the function returns the address by Argyrios Kyrtzidis · 12 years ago
  81. 8fba894 modern objective-c translator. named aggregate types by Fariborz Jahanian · 12 years ago
  82. 0e22a9f For RecursiveASTVisitor, do data recursion for CXXOperatorCallExpr. by Argyrios Kyrtzidis · 12 years ago
  83. 4548ca2 Store the source range of a CXXOperatorCallExpr in the Expr object instead of by Argyrios Kyrtzidis · 12 years ago
  84. 89585e80 minor refactoring of modern objc translator. by Fariborz Jahanian · 12 years ago
  85. 8eece46 Fix C versus C++ linkage issue. by Ted Kremenek · 12 years ago
  86. bbf66ca Reduce malloc() traffic of clang_getOverridenCursors() by using a pool of SmallVector<CXCursor> objects by Ted Kremenek · 12 years ago
  87. 2c0abf4 Add FixItHint for -Wnull-conversion to initialize with an appropriate literal. by David Blaikie · 12 years ago
  88. c1c0725 Fix PR12378: provide conversion warnings on default args of function templates by David Blaikie · 12 years ago
  89. e7be109 HandleDeclarator() returns NULL for semantic disasters. Deal with it by Douglas Gregor · 12 years ago
  90. 694e796 Add -Wloop-analysis. This warning will fire on for loops which the variables by Richard Trieu · 12 years ago
  91. b4ee880 modern objective-c translation: de-virtualize all local rewriting functions. by Fariborz Jahanian · 12 years ago
  92. de88246 Restore paren, bracket and brace counts in parser when by Douglas Gregor · 12 years ago
  93. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  94. 2980383 Correct CFGBlock's front() and back() to return by const ref rather than value. by David Blaikie · 12 years ago
  95. b86b855 PR11926 + duplicates: Fix crash in -Wuninitialized when using a compiler like by Richard Smith · 12 years ago
  96. 6850faf PR9546, DR1268: A prvalue cannot be reinterpret_cast to an rvalue reference by Richard Smith · 12 years ago
  97. e531001 PR12688: ParseCXXClassMemberDeclaration's sometimes-null ThisDecl takes another by Richard Smith · 12 years ago
  98. a2e76f5 [class.copy]p23: Fix an assertion caused by incorrect argument numbering in a by Richard Smith · 12 years ago
  99. e593921 Currently __builtin_annotation() only annotates an i32. by Julien Lerouge · 12 years ago
  100. bddc7e5 improve error recovery for extra ')'s after a if/switch/while condition. Before: by Chris Lattner · 12 years ago