1. 8eece46 Fix C versus C++ linkage issue. by Ted Kremenek · 12 years ago
  2. bbf66ca Reduce malloc() traffic of clang_getOverridenCursors() by using a pool of SmallVector<CXCursor> objects by Ted Kremenek · 12 years ago
  3. 2c0abf4 Add FixItHint for -Wnull-conversion to initialize with an appropriate literal. by David Blaikie · 12 years ago
  4. c1c0725 Fix PR12378: provide conversion warnings on default args of function templates by David Blaikie · 12 years ago
  5. e7be109 HandleDeclarator() returns NULL for semantic disasters. Deal with it by Douglas Gregor · 12 years ago
  6. 694e796 Add -Wloop-analysis. This warning will fire on for loops which the variables by Richard Trieu · 12 years ago
  7. b4ee880 modern objective-c translation: de-virtualize all local rewriting functions. by Fariborz Jahanian · 12 years ago
  8. de88246 Restore paren, bracket and brace counts in parser when by Douglas Gregor · 12 years ago
  9. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  10. 2980383 Correct CFGBlock's front() and back() to return by const ref rather than value. by David Blaikie · 12 years ago
  11. b86b855 PR11926 + duplicates: Fix crash in -Wuninitialized when using a compiler like by Richard Smith · 12 years ago
  12. 6850faf PR9546, DR1268: A prvalue cannot be reinterpret_cast to an rvalue reference by Richard Smith · 12 years ago
  13. e531001 PR12688: ParseCXXClassMemberDeclaration's sometimes-null ThisDecl takes another by Richard Smith · 12 years ago
  14. a2e76f5 [class.copy]p23: Fix an assertion caused by incorrect argument numbering in a by Richard Smith · 12 years ago
  15. e593921 Currently __builtin_annotation() only annotates an i32. by Julien Lerouge · 12 years ago
  16. bddc7e5 improve error recovery for extra ')'s after a if/switch/while condition. Before: by Chris Lattner · 12 years ago
  17. 8bb21d3 switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. This allows by Chris Lattner · 12 years ago
  18. 8907832 isCXX98PODType: Avoid dispatch on the language standard when recursing. by Benjamin Kramer · 12 years ago
  19. 98f71aa C++11 weakens the requirement for types used with offsetof from POD to standard layout type. by Benjamin Kramer · 12 years ago
  20. 152f6b7 Rename isPODType (using the C++98 rules) into isCXX98PODType and make isPODType decide which one to use based on LangOptions. by Benjamin Kramer · 12 years ago
  21. 470360d Revert "Use the C++11 definition of PODness for __is_pod in C++11 mode." by Benjamin Kramer · 12 years ago
  22. 046e869 Use the C++11 definition of PODness for __is_pod in C++11 mode. by Benjamin Kramer · 12 years ago
  23. d200187 [analyzer] Remove references to idx::TranslationUnit. Index is dead, cross-TU inlining never panned out. by Jordy Rose · 12 years ago
  24. d92fe8f Make the diagnostic for "unexpected ':' in nested name specifier" a bit easier on the eyes. by Nico Weber · 12 years ago
  25. 27fc81b objective-c modern translator: Correctly translate by Fariborz Jahanian · 12 years ago
  26. 58db7a5 When @encode'ing a C++ class that has empty base classes, we can end by Douglas Gregor · 12 years ago
  27. 0eed2cb Bump up the MaxDepth in the BalancedDelimiterTracker. by Chad Rosier · 12 years ago
  28. bd78cfa modern objective-c translator: _OBJC_PROTOCOL_REFERENCE_* by Fariborz Jahanian · 12 years ago
  29. 8202fb8 [driver] Don't try to set the deployment target when there is no bound by Chad Rosier · 12 years ago
  30. a1366cb PR12224 (sort of): Diagnose inheriting constructor declarations in C++11 mode. by Richard Smith · 12 years ago
  31. 392b3f5 Imrpove the note text for when a non-type decl hides a tag type by Kaelyn Uhrain · 12 years ago
  32. 4e47dee Fix logic such that we only call getToolChain once. No functional change by Chad Rosier · 12 years ago
  33. 1dcfe34 Remove redundant calls to BAA->getArchName(). No functional change intended. by Chad Rosier · 12 years ago
  34. c97e96a Revert 155679; Not a typo. by Chad Rosier · 12 years ago
  35. 3a70cd6 Use enum to set debug info size generated by Clang by Alexey Samsonov · 12 years ago
  36. 577f14a Use a deque instead of an ImmutableList in AnalysisConsumer to preserve the file order that functions are visited. Should fix the buildbots. by Ted Kremenek · 12 years ago
  37. 29a4ce4 test/Rewriter: Mark 4 tests as XFAIL:mingw32, due to predefined __declspec(a) issue. by NAKAMURA Takumi · 12 years ago
  38. ba82a61 test/Driver/fast-math.c: Mark this as XFAIL:cygming. They use gcc driver for as. by NAKAMURA Takumi · 12 years ago
  39. d601c62 Add test case for rdar://11293995 by Argyrios Kyrtzidis · 12 years ago
  40. c8f11e9 Add a missing check in CodeGen of packed classes with vtables. <rdar://problem/11324125>. by Eli Friedman · 12 years ago
  41. 526cda3 The release notes are no place for modesty. by Richard Smith · 12 years ago
  42. cb0a503 Change FunctionSummary.h's definition of SetOfDecls to be an ImmutableList instead by Ted Kremenek · 12 years ago
  43. e9a4c01 Typo. by Chad Rosier · 12 years ago
  44. aec2ac6 Add note to help explain why a tag such as 'struct' is needed to refer by Kaelyn Uhrain · 12 years ago
  45. 65a7c68 modern objective-c transltion: Fixes a translation bug by Fariborz Jahanian · 12 years ago
  46. 9b94cd1 Add a missing ExpressionEvaluationContext for template default arguments. Fixes PR12581. by Eli Friedman · 12 years ago
  47. 0538ad7 Remove svn:eol-style from the test I just added. Sorry :-/ by Nico Weber · 12 years ago
  48. 40d8e97 Revert r154981, because it caused PR12674. by Nico Weber · 12 years ago
  49. 196603c Test case for previosu patch. // rdar://11323676 by Fariborz Jahanian · 12 years ago
  50. 52c18b0 objective-c IRGen. Fixes a getter synthesis bug by Fariborz Jahanian · 12 years ago
  51. 6ea4841 Fix a bug with block layout when the block contains something by John McCall · 12 years ago
  52. e002631 Fix file name in comment. by David Blaikie · 12 years ago
  53. b8c4381 MIPS: Add support for 64-bit MIPS targets: mips64 / mips64el. by Simon Atanasyan · 12 years ago
  54. 394e539 [PCH] In ASTReader::completeVisibleDeclsMap, after we loaded all visible decls, mark by Argyrios Kyrtzidis · 12 years ago
  55. 1de9d7d Fix a crash-on-invalid where the constant evaluator would try to by John McCall · 12 years ago
  56. e855b88 Remove the group from -fhonor_infinites/-fno_honor_infinites aliases. Aliases by Chad Rosier · 12 years ago
  57. 3206403 Define __ANDROID__ macro on -androideabi targets. by Evgeniy Stepanov · 12 years ago
  58. 74eb4af Adds a tutorial on how to write RAV based ASTFrontendActions. by Manuel Klimek · 12 years ago
  59. 981d1ec Reverted unintentional commit. by Manuel Klimek · 12 years ago
  60. 4f148d9 MIPS: Add tests to check the debian multiarch stuff for mips and mipsel targets. by Simon Atanasyan · 12 years ago
  61. d9ed0fd Adds a small tutorial on how to write RAV based ASTFrontendActions. by Manuel Klimek · 12 years ago
  62. fd93630 Enable AVX/AVX2 for Sandy Bridge, Ivy Bridge, and Haswell CPUs. by Craig Topper · 12 years ago
  63. cfca6b7 Update checker build link, and remove stale links. by Ted Kremenek · 12 years ago
  64. a43ea64 PR12647: An alias template instantiation which occurs in a SFINAE context is by Richard Smith · 12 years ago
  65. 8f40afb [analyzer] check lazy bindings in RegionStore first before looking for default values. Fixes <rdar://problem/11269741>. by Ted Kremenek · 12 years ago
  66. befc6d2 Teach RetainCountChecker that it doesn't quite understand pthread_setspecific and it should just give up when it sees it. Fixes <rdar://problem/11282706>. by Ted Kremenek · 12 years ago
  67. 6e4a0af PR12660: Don't crash when initializing a const reference from a braced init list by Richard Smith · 12 years ago
  68. 4f50c50 Fix a long-standing bug where Clang had a different default from GCC on by Chandler Carruth · 12 years ago
  69. 86e6fdc Two missing -Wc++98-compat warnings, for null pointers as non-type template by Richard Smith · 12 years ago
  70. 45a0b26 Reject cases like by Rafael Espindola · 12 years ago
  71. c799a6a If a type is non-literal by virtue of being incomplete produce notes by Richard Smith · 12 years ago
  72. a313b2f RecursiveASTVisitor: When in 'shouldVisitTemplateInstantiations' mode, visit by Richard Smith · 12 years ago
  73. 26d6023 Typo. by Chad Rosier · 12 years ago
  74. df407c3 objective-c modern translator: more tests. by Fariborz Jahanian · 12 years ago
  75. 2b90f76 Add an error message with fixit hint for changing '.' to '->'. by Kaelyn Uhrain · 12 years ago
  76. ad57991 When resolving default template arguments, it should be done in the declaration context by Argyrios Kyrtzidis · 12 years ago
  77. 5d59b79 PR12625: Cope with classes which have incomplete base or member types: by Richard Smith · 12 years ago
  78. 0d62709 Use a SmallMap for StoredDeclsMap, it's usually sparsely populated so we can avoid initializing memory for 64 buckets. by Benjamin Kramer · 12 years ago
  79. 383fdf9 Convert a std::map that usually has between 0 and 10 elements to SmallMap. by Benjamin Kramer · 12 years ago
  80. d3a39f0 improve a modern objc translator test. by Fariborz Jahanian · 12 years ago
  81. 0418953 modern objc rewriter: fixes a bug writing by Fariborz Jahanian · 12 years ago
  82. d80d484 Adds documentation for how to use the tooling library. by Manuel Klimek · 12 years ago
  83. 9771a9e Adds a document describing the various tooling approaches and their pros and by Manuel Klimek · 12 years ago
  84. 99f8f17 Make asan-ld test windows-safe. by Evgeniy Stepanov · 12 years ago
  85. 3e8479d Fixes the header search logic for tools: by Manuel Klimek · 12 years ago
  86. a6ddc02 Clang driver support for linking on Android. by Evgeniy Stepanov · 12 years ago
  87. 4add84f Fix default cpu for -march=armv5e. by Evgeniy Stepanov · 12 years ago
  88. 4ddcf3b OpenBSD: Remove incorrect -pthread preprocessor define _POSIX_THREADS and replace by Chris Lattner · 12 years ago
  89. 92f4e6e don't use soname on OpenBSD, it doesn't support it. Patch by Brad Smith! by Chris Lattner · 12 years ago
  90. 3030066 Expand #include_next in float.h from mingw to _msc_ver. by Nico Weber · 12 years ago
  91. e7255c1 Add acos, asin, ceil, fabs, floor, fmax, fmin, round, and tan to the builtin by Chad Rosier · 12 years ago
  92. 454393e Add atan, atan2, exp, and log to the builtin math library functions. by Chad Rosier · 12 years ago
  93. fae0f48 Alphabetize the builtin math library functions. No functional change intended. by Chad Rosier · 12 years ago
  94. 08e46f9 Let NULL and MSVC headers coexist better. by Nico Weber · 12 years ago
  95. 5482dc3 RecursiveASTVisitor: Visit instantiations of member templates of class by Richard Smith · 12 years ago
  96. 4fe261c modern objc translator: Allow writing of multiple by Fariborz Jahanian · 12 years ago
  97. e6e96de objc modern rewriter: allow translation of by Fariborz Jahanian · 12 years ago
  98. 8247c4e objc modern rewriter: minor refactoring. by Fariborz Jahanian · 12 years ago
  99. e47398a Add a FIXME for uncomplete comment fix a typo add punctuation by Gabor Greif · 12 years ago
  100. e70372d Adding information about what intrinsics still need to be implemented for MSVC compatibility. by Aaron Ballman · 12 years ago