1. 86ff12c [analyzer] Move report false positive suppression to report visitors. by Anna Zaks · 12 years ago
  2. ce32890 [analyzer] Remove further references to analyzer-ipa. by Anna Zaks · 12 years ago
  3. 16bdd3b Hoist retrieval of Expr* into caller. No functionality change. by Ted Kremenek · 12 years ago
  4. 8d3f613 [preprocessor] Don't warn about "disabled expansion of recursive macro" by Argyrios Kyrtzidis · 12 years ago
  5. baa7ca1 [analyzer] Model trivial copy/move ctors with an aggregate bind. by Jordan Rose · 12 years ago
  6. 5bd1e5b Comment parsing: resolve more named character references by Dmitri Gribenko · 12 years ago
  7. b1c760e Revert unintended change by Dmitri Gribenko · 12 years ago
  8. cb5620c Move UTF conversion routines from clang/lib/Basic to llvm/lib/Support by Dmitri Gribenko · 12 years ago
  9. e1ac4ae Also promote fp16 types to double when they're anonymous variadic arguments. by Tim Northover · 12 years ago
  10. afcbd85 Don't generate no-op replacements. by Daniel Jasper · 12 years ago
  11. 31aa577 Add "instancetype" as a code completion result for the return type of by Douglas Gregor · 12 years ago
  12. 5824b80 The instance methods of the root class of an Objective-C hieararchy by Douglas Gregor · 12 years ago
  13. 48cb74a C11: Provide the missing half of <stdalign.h> by Richard Smith · 12 years ago
  14. 7586a6e Semantic analysis and CodeGen support for C11's _Noreturn. This is modeled as by Richard Smith · 12 years ago
  15. 4874a81 Don't warn on fall-through from unreachable code. by Alexander Kornienko · 12 years ago
  16. 74c2498 Don't warn about Unicode characters in -E mode. by Jordan Rose · 12 years ago
  17. 1d87fba Provide a fixit for constexpr non-static data members. by David Blaikie · 12 years ago
  18. 7adf417 c: When checking on validity of sizeof passed as size of by Fariborz Jahanian · 12 years ago
  19. 9cd90a2 [Frontend] Factor AddUnmappedPath() out of AddPath() and simplify. by Daniel Dunbar · 12 years ago
  20. 59fd635 [Frontend] Remove HeaderSearchOptions::Entry::IsInternal, which is unused. by Daniel Dunbar · 12 years ago
  21. ef84554 [Frontend] Add an ExternCSystem include entry group. by Daniel Dunbar · 12 years ago
  22. 4b1a0e4 Removed couple of html named character references in my last patch. by Fariborz Jahanian · 12 years ago
  23. c33c9f7 [Frontend] Make the include dir group independent from the "use sysroot" bit. by Daniel Dunbar · 12 years ago
  24. f85541c [Frontend] Rename a member variable to clarify its intent. by Daniel Dunbar · 12 years ago
  25. 49ffaef [Frontend] Factor out helper function, for clarity. by Daniel Dunbar · 12 years ago
  26. 8425a54 [driver] Clear the FailureResultFiles when initializing clang diagnostics. Also, by Chad Rosier · 12 years ago
  27. 658a115 [Doc parsing] Patch to parse Doxygen-supported HTML character by Fariborz Jahanian · 12 years ago
  28. 78d85b1 [ubsan] Implement the -fcatch-undefined-behavior flag using a trapping by Chad Rosier · 12 years ago
  29. a367e9d Move -Wstatic-float-init fixit into a note & don't recover as if constexpr by David Blaikie · 12 years ago
  30. 6933e3b Don't fixit/recover from -Wstatic-float-init when it's not an error. by David Blaikie · 12 years ago
  31. 32d28ee Move the token annotator into separate files. by Daniel Jasper · 12 years ago
  32. fcf8960 [Preprocessor] When checking if we can concatenate two tokens, check by Argyrios Kyrtzidis · 12 years ago
  33. a16355c [driver] Refactor the driver so that a failing commands doesn't prevent by Chad Rosier · 12 years ago
  34. d4f2c2e Improve formatting of code with comments. by Daniel Jasper · 12 years ago
  35. 3d207e7 Mark a struct definition in an objc container with the TopLevelDeclInObjCContainer bit. by Argyrios Kyrtzidis · 12 years ago
  36. f157960 Allow all parameters on next line for function calls in Chrome. by Daniel Jasper · 12 years ago
  37. f40fb4b Split ">>" in "A<B<C> >" in Chromium style. by Daniel Jasper · 12 years ago
  38. b3109e3 Fix uninitialized error caused by r173801. by Daniel Jasper · 12 years ago
  39. a52d278 by Joey Gouly · 12 years ago
  40. adc6aba Calculate the split penalty upfront. by Daniel Jasper · 12 years ago
  41. 1a1ce83 Fix a comment and reformat clang-format with clang-format by Daniel Jasper · 12 years ago
  42. 2e60377 Initial support for multiple variable declarations. by Daniel Jasper · 12 years ago
  43. 98f988d by Joey Gouly · 12 years ago
  44. a0109e2 Produce a diagnostic if alignas is applied to an expression. Neither C11 nor by Richard Smith · 12 years ago
  45. d03de6a Downgrade 'attribute ignored when parsing type' from error to warning, to match by Richard Smith · 12 years ago
  46. 93384a9 Reverting changes from r173785 (removing empty lines before "}"). by Daniel Jasper · 12 years ago
  47. 8df364f Remove empty lines before "}". by Daniel Jasper · 12 years ago
  48. 4cd81c5 Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas. by Richard Smith · 12 years ago
  49. 8f3aacc Propagate the spelling list index for an attribute across template instantiation. by Richard Smith · 12 years ago
  50. 8338a9d PR15017: A '>' can appear after a type-specifier in a template-argument-list. by Richard Smith · 12 years ago
  51. 485b312 PR15100: look through type sugar when determining whether we have one of the by Richard Smith · 12 years ago
  52. 33f04a2 Treat alignas and _Alignas as keyword attributes. This allows us to by Richard Smith · 12 years ago
  53. cda7968 Actually remove the hack which was blocking the Borland-style attributes from by Richard Smith · 12 years ago
  54. f727e1c Don't crash while printing APValues that are lvalues casted to a by Douglas Gregor · 12 years ago
  55. 5cd532c Replace AS_MSTypespec with AS_Keyword, for representing any attribute spelled by Richard Smith · 12 years ago
  56. a438b2d Abstract the behavior of when to use base-class tail padding. by John McCall · 12 years ago
  57. 3a2b7a1 Finish semantic analysis for [[carries_dependency]] attribute. by Richard Smith · 12 years ago
  58. bde67cf Undo my re-wording of the "ARC forbids Objective-C objects in ..." by Douglas Gregor · 12 years ago
  59. 4581d45 Forbid the use of objects in unions in Objective-C++ ARC. Fixes by Douglas Gregor · 12 years ago
  60. 20c6f2e Enable the global module index by default. Introduce the by Douglas Gregor · 12 years ago
  61. 894719b ASTReader and profiling statistics indicate that implementing a method by Douglas Gregor · 12 years ago
  62. 95fb36e Add some more ASTReader statistics for global method pool lookups. by Douglas Gregor · 12 years ago
  63. 8094bac PR15067 (again): Don't warn about UCNs in C90 if we're raw-lexing. by Jordan Rose · 12 years ago
  64. a522987 Fix comment. by Eric Christopher · 12 years ago
  65. 7522318 Fix a bug that would lead to bad line break decisions in for loops. by Daniel Jasper · 12 years ago
  66. d3cf5fb Eliminate memory allocation from most invocations of by Douglas Gregor · 12 years ago
  67. d75ff64 Don't put a function's return type on its own line in Google style. by Daniel Jasper · 12 years ago
  68. 83f25ba Let clang-format break after a function's return type. by Daniel Jasper · 12 years ago
  69. 02b771e Make continuations in constructor initializers consistent. by Daniel Jasper · 12 years ago
  70. 3b9a8fc Initial support for formatting range-based for-loops. by Daniel Jasper · 12 years ago
  71. bfe6fd4 Improve formatting of conditional expressions. by Daniel Jasper · 12 years ago
  72. ae8699b Several small changes in formatting decisions. by Daniel Jasper · 12 years ago
  73. 5f2173e Improve indentation after breaking at nested name specifiers. by Daniel Jasper · 12 years ago
  74. 986e17f Avoid confusing identations for multi-parameter functions. by Daniel Jasper · 12 years ago
  75. 3e335c1 Print warning instead of error if optional ASan features are enabled w/o specifying -fsanitize=address by Alexey Samsonov · 12 years ago
  76. 43bb45d Fix the indentation of the first line of preprocessor output by Hal Finkel · 12 years ago
  77. 23d5b09 Since ObjCARC has been refactored into its own library with its own declaration header, we need to include the declaration header alongside Scalar.h in BackendUtil. by Michael Gottesman · 12 years ago
  78. d98f708 Tests and a minor bugfix for [dcl.attr.depend]p1 (C++11 [[carries_dependency]] by Richard Smith · 12 years ago
  79. c5f7d6a Add a -pedantic warning: an anonymous union within an anonymous union is not by Richard Smith · 12 years ago
  80. 5250e2b Decl printer: fix CXXConstructExpr with implicit default argument by Dmitri Gribenko · 12 years ago
  81. d1e5c0d Comment parsing: attach any tag type's documentation to its typedef if latter by Dmitri Gribenko · 12 years ago
  82. bfec916 PR15067: Don't assert when a UCN appears in a C90 file. by Jordan Rose · 12 years ago
  83. 06b5ea6 Revert r173586 (and r173587) , "Attach any tag type's documentation to its typedef if" by NAKAMURA Takumi · 12 years ago
  84. b263bdf Use the AttributeSet instead of AttributeWithIndex. by Bill Wendling · 12 years ago
  85. a650485 PR14566: Debug Info: avoid top level lexical blocks in functions by David Blaikie · 12 years ago
  86. e3fac33 Fix comment. by Fariborz Jahanian · 12 years ago
  87. 87611cd Attach any tag type's documentation to its typedef if by Fariborz Jahanian · 12 years ago
  88. 9677eb8 Added ASTContext methods getIntPtrType and getUIntPtrType. by Enea Zaffanella · 12 years ago
  89. adeb782 <limits.h> includes <linux/limits.h> on Linux, no need to special-case it by Dmitri Gribenko · 12 years ago
  90. d615f88 Constify some getters of DesignatedInitExpr by Dmitri Gribenko · 12 years ago
  91. 07c52d2 [analyzer] C++ initializers may require cleanups; look through these. by Jordan Rose · 12 years ago
  92. db55c04c Give a more informative error message when the dot or arrow operator is used by Richard Trieu · 12 years ago
  93. 98bfbf5 Fix mismatch between pointer and pointee type when diagnosing an incorrect by Richard Smith · 12 years ago
  94. 8782761 Remove function that is newly dead as of r173538. by Nick Lewycky · 12 years ago
  95. 7ba443a Highlight various parts of the AST dump with color. Colors are controlled by by Richard Trieu · 12 years ago
  96. 44ec3f0 [analyzer] Track null object lvalues back through C++ method calls. by Jordan Rose · 12 years ago
  97. dede2fd [analyzer] bugreporter::getDerefExpr now takes a Stmt, not an ExplodedNode. by Jordan Rose · 12 years ago
  98. aeca2cc [analyzer] Add 'prune-paths' config option to disable path pruning. by Jordan Rose · 12 years ago
  99. 7ee8906 [analyzer] Rename PruneNullReturnPaths to SuppressNullReturnPaths. by Jordan Rose · 12 years ago
  100. 713b7c0 Since we're stuck with realpath for the header <-> module mapping, by Douglas Gregor · 12 years ago