1. 4cf4a5e Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar for the _Atomic type specifier. by Richard Smith · 11 years ago
  2. 93d6b07 Fold together the two implementations of 6.7.3p2 in SemaType. Fix two bugs, each of which was only present in one version: by Richard Smith · 11 years ago
  3. ab2d09b [Parser] Don't code-complete twice. by Argyrios Kyrtzidis · 11 years ago
  4. 9807a2e Don't reject __restrict applied to a dependent type; it might instantiate to a pointer or reference type. by Richard Smith · 11 years ago
  5. cbd7394 Simplify test to use a count for the number of notes expected. by Bill Wendling · 11 years ago
  6. 5087645 UBSan: Don't diagnose inf/nan conversions between floating-point types. It's far from clear whether these have undefined behavior, and these checks are helping no-one. Keep the double->float overflow warnings, though, since those are useful in practice, even though it's unclear whether such operations have defined behavior. by Richard Smith · 11 years ago
  7. 87d2a37 Remove unnecessary attributes from test case. by Chad Rosier · 11 years ago
  8. 5e5ca1b Add a front-end test case for r178186. by Chad Rosier · 11 years ago
  9. 0353b70 Fixes a typo in my last patch. by Fariborz Jahanian · 11 years ago
  10. 04f5db6 Revert "[lib/Headers] Define NULL as __DARWIN_NULL when on __APPLE__." by Argyrios Kyrtzidis · 11 years ago
  11. 7e35274 Objective-C: Issue more precise warning when user by Fariborz Jahanian · 11 years ago
  12. e81fdb1 Cleanup clang's specializations of simplify_type. by Rafael Espindola · 11 years ago
  13. 9083628 Update the error handing static functions for r178161. Part of rdar://13296693 by Chad Rosier · 11 years ago
  14. b061720 [analyzer] Use evalBind for C++ new of scalar types. by Jordan Rose · 11 years ago
  15. 3655119 [analyzer] Cleanup: only get the PostStmt when we need the underlying Stmt + comment by Anna Zaks · 11 years ago
  16. 4a49df3 [analyzer] Ensure that the node NilReceiverBRVisitor is looking for is not reclaimed by Anna Zaks · 11 years ago
  17. ea744ab [modules] Make sure enabled diagnostic pragmas inside the module don't affect the translation unit that by Argyrios Kyrtzidis · 11 years ago
  18. 94b748f Insert extra new line before access specifiers. by Alexander Kornienko · 11 years ago
  19. c544ba0 <rdar://problem/13509689> Introduce -module-file-info option that provides information about a particular module file. by Douglas Gregor · 11 years ago
  20. 8343f8e Add const in preparation for a simplify_type change in llvm. by Rafael Espindola · 11 years ago
  21. 3d91ddb Add another expected note. Two errors => two notes. by Tim Northover · 11 years ago
  22. 6ddfe4e Disable ASan/MSan symbolization of reports in tests. by Evgeniy Stepanov · 11 years ago
  23. c528aa2 Mark comment-to-html-xml-conversion test as XFAIL:msan, in addition to valgrind. by Evgeniy Stepanov · 11 years ago
  24. 6bed88e <rdar://problem/13317030> Consider using directives when performing unqualified name lookup into declarations contexts represented by the qualified-id but not in the actual scope hierarchy. by Douglas Gregor · 11 years ago
  25. 5262dd9 Split line comments by Alexander Kornienko · 11 years ago
  26. f2ff5bd Fix testcase to add expected note. by Bill Wendling · 11 years ago
  27. d835d94 Pass the diagnostic in for better error messages. by Bill Wendling · 11 years ago
  28. 08aba1b [lib/Headers] Break the module import cycle between _Builtin_intrinsics.sse and _Builtin_intrinsics.sse2 by Argyrios Kyrtzidis · 11 years ago
  29. 9ef9875 Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_traits>. by Joao Matos · 11 years ago
  30. 07ffbd7 [lib/Headers] Define NULL as __DARWIN_NULL when on __APPLE__. by Argyrios Kyrtzidis · 11 years ago
  31. 52151fd [modules] Before marking the module imported macros as ambiguous, check if this is a case where by Argyrios Kyrtzidis · 11 years ago
  32. 7ca8e91 Remove IdentifierInfo::setHadMacroDefinition() by Argyrios Kyrtzidis · 11 years ago
  33. 89b8f06 [PCH/modules] Remove HiddenName::MacroUndef by Argyrios Kyrtzidis · 11 years ago
  34. d560ce3 [Preprocessor] Remove PPMutationListener. by Argyrios Kyrtzidis · 11 years ago
  35. 3580328 [modules] Re-enable the "ambiguous expansion of macro" warning. by Argyrios Kyrtzidis · 11 years ago
  36. 12fef49 PR15597: Fix a confusion between the implicit exception specification and the by Richard Smith · 11 years ago
  37. a03fc6e If we're unable to create the TargetMachine, then just quit producing the by Chad Rosier · 11 years ago
  38. 5035c48 Update debug info test for schema change made to LLVM. by David Blaikie · 11 years ago
  39. fdb468f Make the -Wreinterpret-base-class logic safe against invalid by John McCall · 11 years ago
  40. 8b43d2b Split "incomplete implementation" warnings for ObjC into separate warnings. by Ted Kremenek · 11 years ago
  41. defa32e <rdar://problem/13278115> Improve diagnostic when failing to bind an rvalue reference to an lvalue of compatible type. by Douglas Gregor · 11 years ago
  42. ddb6176 [analyzer] Better test for r178063. by Anna Zaks · 11 years ago
  43. 1533833 [analyzer] Make sure IDC works for ‘NSContainer value/key is nil’ checks. by Anna Zaks · 11 years ago
  44. 2fcadbe Remove magic number usage from CGDebugInfo with new DICompositeType::setContainingType by David Blaikie · 11 years ago
  45. c48d575 [driver] Do not generate crash diagnostics if the compilation command failed by Chad Rosier · 11 years ago
  46. 0162c1c <rdar://problem/13267210> Ensure that Sema::CompareReferenceRelationship returns consistent results with invalid types. by Douglas Gregor · 11 years ago
  47. 7020346 Remove a FIXME that's not planned to be fixed. We only generated crash by Chad Rosier · 11 years ago
  48. e79ce29 <rdar://problem/13473493> Handle 'this->' insertion recovery within trailing return types. by Douglas Gregor · 11 years ago
  49. d74505e Debug Info: remove use of magic numbers to tweak specific debug info metadata fields by David Blaikie · 11 years ago
  50. 8a660eb [analyzer] Change inlining policy to inline small functions when reanalyzing ObjC methods as top level. by Anna Zaks · 11 years ago
  51. df5f80f [analyzer] micro optimization as per Jordan’s feedback on r177905. by Anna Zaks · 11 years ago
  52. 4e493bd clang/test/CodeGenCXX/debug-info-namespace.cpp: Disable it on non-bash lit for now. by NAKAMURA Takumi · 11 years ago
  53. 6c82fc6 Remove useGlobalsForAutomaticVariables. by Rafael Espindola · 11 years ago
  54. 852e3d7 [ms-cxxabi] Give the MS inheritance attributes a base class by Reid Kleckner · 11 years ago
  55. 94d46b5 Fix uninitialized read of CalleeWithThisReturn. by Manman Ren · 11 years ago
  56. e2359e2 Fix a crasher by reporting a fatal error if we're unable to create the target by Chad Rosier · 11 years ago
  57. 72339a0 Add PRFCHW intrinsic support by Michael Liao · 11 years ago
  58. c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 11 years ago
  59. 1232e27 [ms-cxxabi] Mangle vector types by Reid Kleckner · 11 years ago
  60. 76ed617 Fix uninitialized read of CalleeWithThisReturn. by Evgeniy Stepanov · 11 years ago
  61. 231b2bc Actually mark ASan-unfriendly test as XFAIL by Alexey Samsonov · 11 years ago
  62. 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
  63. 4295802 Manually specify the link dependencies. Turns out that all the work on by Chandler Carruth · 11 years ago
  64. 8af742a Handle CXXOperatorCallExpr when checking self referrnce during initialization of by Richard Trieu · 11 years ago
  65. 9cc935b The IRReader header is now part of its own library. Update the include by Chandler Carruth · 11 years ago
  66. f9223aa Remove FIXMEs: these are covered by a core issue which we don't yet implement by Richard Smith · 11 years ago
  67. 2db075b Implement special-case name lookup for inheriting constructors: member by Richard Smith · 11 years ago
  68. c2e935f Remove some no-op static_casts. by Richard Smith · 11 years ago
  69. b501aeb Objective-C: Property declaration overiding one in by Fariborz Jahanian · 11 years ago
  70. 4d553c9 clang/test/Index/crash-recovery-code-complete.c: Mark it as XFAIL:win32 for now. by NAKAMURA Takumi · 11 years ago
  71. 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
  72. dc392c1 <rdar://problem/13185264> Don't crash when attempting to redundantly initialize a member of an anonymous union. by Douglas Gregor · 11 years ago
  73. 2275b79 Fix layering violation harder. by Matt Beaumont-Gay · 11 years ago
  74. 7aac45a <rdar://problem/13358795> Teach CMake to check Subversion version information at build time, not configure time. by Douglas Gregor · 11 years ago
  75. b27564e Fix testcase. by Ted Kremenek · 11 years ago
  76. 6edb029 For printf checking, handle nested typedefs for darwin-specific checking. by Ted Kremenek · 11 years ago
  77. 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
  78. e915442 Remove local path from test. by Douglas Gregor · 11 years ago
  79. 87ab066 Use <time.h> rather than <sys/time.h> by Douglas Gregor · 11 years ago
  80. 5d83526 Use xargs rather than by Douglas Gregor · 11 years ago
  81. b63d8d2 Fix a layering violation introduced in r177705. by Matt Beaumont-Gay · 11 years ago
  82. 5dca66c Use 'touch -t', which both BSD and Linux support. by Douglas Gregor · 11 years ago
  83. cdd81e5 Try harder to be signal-safe inside our signal handler. The most prominent behavioural by Nick Lewycky · 11 years ago
  84. d44d287 <rdar://problem/13434605> Periodically prune the module cache so that it does not grow forever. by Douglas Gregor · 11 years ago
  85. fd61d6f Correct indentation. No functionality change. by Nick Lewycky · 11 years ago
  86. 14df23b Emit an error message instead of crashing when dereferencing an incomplete pointer type. by Bill Wendling · 11 years ago
  87. 1f1df1f IR-gen should not generate an MMX types unless the code is explicitly using MMX by Chad Rosier · 11 years ago
  88. 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
  89. 4eb17e5 Added PR number for failing win64 tests. by Fariborz Jahanian · 11 years ago
  90. 0ff72fc Re-add clang-format tests to clang/test. by Daniel Jasper · 11 years ago
  91. 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
  92. 8f7bfb4 [analyzer] Teach ConstraintManager to ignore NonLoc <> NonLoc comparisons. by Jordan Rose · 11 years ago
  93. f449244 Simplify code. No functionality change. by Benjamin Kramer · 11 years ago
  94. 2951187 Reject -no-integrated-as on windows. by Rafael Espindola · 11 years ago
  95. 1db7040 Generate metadata to implement the -cl-kernel-arg-info option. by Guy Benyei · 11 years ago
  96. e8b87f9 Don't actually invoke codegen in driver test. by Benjamin Kramer · 11 years ago
  97. 495cfa4 Make clang to mark static stack allocations with lifetime markers to enable a more aggressive stack coloring. by Nadav Rotem · 11 years ago
  98. 4a79296 Revert svn r176894 and r177658. by Bob Wilson · 11 years ago
  99. b6a6079 Under ARC, when we're passing the address of a strong variable by John McCall · 11 years ago
  100. 060fe33 Strip off local qualifiers when converting from RecordType to by Richard Trieu · 11 years ago