1. c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 11 years ago
  2. 1232e27 [ms-cxxabi] Mangle vector types by Reid Kleckner · 11 years ago
  3. 76ed617 Fix uninitialized read of CalleeWithThisReturn. by Evgeniy Stepanov · 11 years ago
  4. 231b2bc Actually mark ASan-unfriendly test as XFAIL by Alexey Samsonov · 11 years ago
  5. 48c0834 Add asan/msan to the list of available features in LIT test runner. Mark ASan-unfriendly test as XFAIL. by Alexey Samsonov · 11 years ago
  6. 4295802 Manually specify the link dependencies. Turns out that all the work on by Chandler Carruth · 11 years ago
  7. 8af742a Handle CXXOperatorCallExpr when checking self referrnce during initialization of by Richard Trieu · 11 years ago
  8. 9cc935b The IRReader header is now part of its own library. Update the include by Chandler Carruth · 11 years ago
  9. f9223aa Remove FIXMEs: these are covered by a core issue which we don't yet implement by Richard Smith · 11 years ago
  10. 2db075b Implement special-case name lookup for inheriting constructors: member by Richard Smith · 11 years ago
  11. c2e935f Remove some no-op static_casts. by Richard Smith · 11 years ago
  12. b501aeb Objective-C: Property declaration overiding one in by Fariborz Jahanian · 11 years ago
  13. 4d553c9 clang/test/Index/crash-recovery-code-complete.c: Mark it as XFAIL:win32 for now. by NAKAMURA Takumi · 11 years ago
  14. 6c5aaed <rdar://problem/13395022> Strip references when extracting an initializer_list's element type during application of an initialization sequence. by Douglas Gregor · 11 years ago
  15. dc392c1 <rdar://problem/13185264> Don't crash when attempting to redundantly initialize a member of an anonymous union. by Douglas Gregor · 11 years ago
  16. 2275b79 Fix layering violation harder. by Matt Beaumont-Gay · 11 years ago
  17. 7aac45a <rdar://problem/13358795> Teach CMake to check Subversion version information at build time, not configure time. by Douglas Gregor · 11 years ago
  18. b27564e Fix testcase. by Ted Kremenek · 11 years ago
  19. 6edb029 For printf checking, handle nested typedefs for darwin-specific checking. by Ted Kremenek · 11 years ago
  20. abde2c7 <rdar://problem/13459871> Allow forward declaration of enums with a fixed underlying type in Objective-C (as well as C++11). by Douglas Gregor · 11 years ago
  21. e915442 Remove local path from test. by Douglas Gregor · 11 years ago
  22. 87ab066 Use <time.h> rather than <sys/time.h> by Douglas Gregor · 11 years ago
  23. 5d83526 Use xargs rather than by Douglas Gregor · 11 years ago
  24. b63d8d2 Fix a layering violation introduced in r177705. by Matt Beaumont-Gay · 11 years ago
  25. 5dca66c Use 'touch -t', which both BSD and Linux support. by Douglas Gregor · 11 years ago
  26. cdd81e5 Try harder to be signal-safe inside our signal handler. The most prominent behavioural by Nick Lewycky · 11 years ago
  27. d44d287 <rdar://problem/13434605> Periodically prune the module cache so that it does not grow forever. by Douglas Gregor · 11 years ago
  28. fd61d6f Correct indentation. No functionality change. by Nick Lewycky · 11 years ago
  29. 14df23b Emit an error message instead of crashing when dereferencing an incomplete pointer type. by Bill Wendling · 11 years ago
  30. 1f1df1f IR-gen should not generate an MMX types unless the code is explicitly using MMX by Chad Rosier · 11 years ago
  31. 5db8fac [analyzer] Set concrete offset bindings to UnknownVal when processing symbolic offset binding, even if no bindings are present. by Anna Zaks · 11 years ago
  32. 4eb17e5 Added PR number for failing win64 tests. by Fariborz Jahanian · 11 years ago
  33. 0ff72fc Re-add clang-format tests to clang/test. by Daniel Jasper · 11 years ago
  34. 2de19ed [analyzer] Adds cplusplus.NewDelete checker that check for memory leaks, double free, and use-after-free problems of memory managed by new/delete. by Anton Yartsev · 11 years ago
  35. 8f7bfb4 [analyzer] Teach ConstraintManager to ignore NonLoc <> NonLoc comparisons. by Jordan Rose · 11 years ago
  36. f449244 Simplify code. No functionality change. by Benjamin Kramer · 11 years ago
  37. 2951187 Reject -no-integrated-as on windows. by Rafael Espindola · 11 years ago
  38. 1db7040 Generate metadata to implement the -cl-kernel-arg-info option. by Guy Benyei · 11 years ago
  39. e8b87f9 Don't actually invoke codegen in driver test. by Benjamin Kramer · 11 years ago
  40. 495cfa4 Make clang to mark static stack allocations with lifetime markers to enable a more aggressive stack coloring. by Nadav Rotem · 11 years ago
  41. 4a79296 Revert svn r176894 and r177658. by Bob Wilson · 11 years ago
  42. b6a6079 Under ARC, when we're passing the address of a strong variable by John McCall · 11 years ago
  43. 060fe33 Strip off local qualifiers when converting from RecordType to by Richard Trieu · 11 years ago
  44. 4708b3d [analyzer] Teach constraint managers about unsigned comparisons. by Jordan Rose · 11 years ago
  45. a339cd6 [analyzer] Loc-Loc operations (subtraction or comparison) produce a NonLoc. by Jordan Rose · 11 years ago
  46. e30024c [analyzer] CmpRuns.py: Accept single files as input. by Jordan Rose · 11 years ago
  47. 2816989 [analyzer] Also transform "a < b" to "(b - a) > 0" in the constraint manager. by Jordan Rose · 11 years ago
  48. 8569281 Add reverseComparisonOp and negateComparisonOp to BinaryOperator. by Jordan Rose · 11 years ago
  49. 78114a5 [analyzer] Translate "a != b" to "(b - a) != 0" in the constraint manager. by Jordan Rose · 11 years ago
  50. 8958efa [analyzer] Use SymExprs to represent '<loc> - <loc>' and '<loc> == <loc>'. by Jordan Rose · 11 years ago
  51. 1686137 documentation parsing: when providing code completion comment by Fariborz Jahanian · 11 years ago
  52. b095782 [analyzer] Warn when a nil key or value are passed to NSMutableDictionary and ensure it works with subscripting. by Anna Zaks · 11 years ago
  53. 683d256 [analyzer] Correct the stale comment. by Anna Zaks · 11 years ago
  54. 76e6e13 If a .syms file is available alongside a sanitizer runtime, pass it to the by Richard Smith · 11 years ago
  55. 984f278 Use RequireCompleteType() instead of isIncompleteType(). by Bill Wendling · 11 years ago
  56. 88de5a0 Add test case for PR 12921. by Ted Kremenek · 11 years ago
  57. ed2fc2a <rdar://problem/13479539> Only rebuild the global module cache when we're allowed to. by Douglas Gregor · 11 years ago
  58. 0f3a34f Revert "[analyzer] Break cycles (optionally) when trimming an ExplodedGraph." by Jordan Rose · 11 years ago
  59. 228094a [analyzer] Use a forward BFS instead of a reverse BFS to find shortest paths. by Jordan Rose · 11 years ago
  60. 03af377 [analyzer] Fix test to actually test what was intended. by Jordan Rose · 11 years ago
  61. 1aa4f50 [analyzer] Fix ExprEngine::ViewGraph to handle C++ initializers. by Jordan Rose · 11 years ago
  62. 9317ab9 [PCH/Modules] De/Serialize MacroInfos separately than MacroDirectives. by Argyrios Kyrtzidis · 11 years ago
  63. baa74bd [modules] When a MacroInfo object is deserialized, allocate and store its submodule ID. by Argyrios Kyrtzidis · 11 years ago
  64. a8a0f76 [ms-cxxabi] Implement member data pointers for non-dynamic classes by Reid Kleckner · 11 years ago
  65. fa69fc1 <rdar://problem/13479539> Simplify ModuleManager/GlobalModuleIndex interaction to eliminate a pile of extraneous stats(). by Douglas Gregor · 11 years ago
  66. c02ddb2 documentation parsing. Provide code completion comment by Fariborz Jahanian · 11 years ago
  67. 82f0aff These tests fail on our Window64 machine. by Fariborz Jahanian · 11 years ago
  68. 627707b Better fix for r177725. by Daniel Jasper · 11 years ago
  69. c363dbb Align comments to surrounding unformatted comments. by Daniel Jasper · 11 years ago
  70. 92e44d9 [cxxabi] Get ptrdiff_t from the CodeGenModule instead of caching it by Reid Kleckner · 11 years ago
  71. 0292519 Update docs after moving clang-format from clang-tools-extra to cfe. by Daniel Jasper · 12 years ago
  72. 554f63f Add clang-format to the corresponding Makefile. by Daniel Jasper · 12 years ago
  73. b598542 More precisely recognize ObjC method declarations. by Daniel Jasper · 12 years ago
  74. b2cc521 Documentation: fix a typo and formatting by Dmitri Gribenko · 12 years ago
  75. 8ff563c Fix DeclRefExpr::getFoundDecl() for usages by reference. by Daniel Jasper · 12 years ago
  76. b64eca0 Make clang-format understand more line comments. by Daniel Jasper · 12 years ago
  77. 5921e04 Add future directions for modules by Douglas Gregor · 12 years ago
  78. 5529e3e More modules documentation, including the straw-man import declaration syntax and "how to modularize a platform". by Douglas Gregor · 12 years ago
  79. c640058 OpenMP threadprivate directive parsing and semantic analysis by Alexey Bataev · 12 years ago
  80. 9bb4a0c More documentation on the module map language. by Douglas Gregor · 12 years ago
  81. 08f8539 test commit by Alexey Bataev · 12 years ago
  82. 437da05 Warn about attempts to reinterpret_cast between two types that are by John McCall · 12 years ago
  83. b760f11 Fix a crash-on-valid where a block capture copy expression was by John McCall · 12 years ago
  84. bf8487a ubsan: Pass floating-point arguments to the runtime by value if they fit the by Richard Smith · 12 years ago
  85. daf2e1c <rdar://problem/13479214> Make Clang's <stddef.h> robust against system headers defining size_t/ptrdiff_t/wchar_t. by Douglas Gregor · 12 years ago
  86. f190f6b [analyzer] scan-build: emit errors on stderr, and exit(1) instead of exit(0). by Jordan Rose · 12 years ago
  87. df713ab Update debug info test case for more incoming DIBuilder changes by David Blaikie · 12 years ago
  88. 563060f Update debug info test case for an incoming change to DIBuilder in LLVM by David Blaikie · 12 years ago
  89. 892b6fb <rdar://problem/13477190> Give the Clang module cache directory some structure, so it's easier to find. by Douglas Gregor · 12 years ago
  90. 30262b7 Fix indentation by David Blaikie · 12 years ago
  91. 5bdaef5 Objective-C: Tighten the rules when warning by Fariborz Jahanian · 12 years ago
  92. cf4bd50 Generalize debug info tests to be forward compatible with future DISubprogram changes by David Blaikie · 12 years ago
  93. 595b1bc This ugly regex is required because on Windows, the paths come out as \\ delimited instead of / delimited. Fixes a test breakage since r176894. by Aaron Ballman · 12 years ago
  94. 0beab27 Remove unused variable. by Benjamin Kramer · 12 years ago
  95. 4c49f7b Avoid warnings from compilers that think you can drop off the end of a fully covered switch. by Benjamin Kramer · 12 years ago
  96. 7b79384 Delayed template parsing is not supported by the AST serialization system yet, so turning it off. This fixes a test breakage caused by r177336. by Aaron Ballman · 12 years ago
  97. f3e426b [analyzer] Print return values from debug.DumpCalls checker. by Jordan Rose · 12 years ago
  98. 7c22cf3 Better block comment formatting. by Alexander Kornienko · 12 years ago
  99. 3656c61 [ASan] Let the users to invoke `clang -fsanitize=address` to link binaries targeting the iOS simulator. by Alexander Potapenko · 12 years ago
  100. 222b4ea Fix a typo. by Bob Wilson · 12 years ago