1. 72b2625 [PCH] Serialize info about redeclared objc methods. by Argyrios Kyrtzidis · 13 years ago
  2. cb1c9c3 Under ARC, merge the bit corresponding to the ns_returns_retained by Douglas Gregor · 13 years ago
  3. 9ce6377 Only warn in -Wliteral-conversion if the conversion loses information by Matt Beaumont-Gay · 13 years ago
  4. 2060650 When declaring an out-of-line template, attempt to rebuild any types by Douglas Gregor · 13 years ago
  5. 6164ea1 Added clang_getCompletionAnnotation and clang_getCompletionNumAnnotations to by Erik Verbruggen · 13 years ago
  6. 3a919e7 Really protect from infinite loop when there are objc method redeclarations. by Argyrios Kyrtzidis · 13 years ago
  7. b40034c Keep track of objc method redeclarations in the same interface. by Argyrios Kyrtzidis · 13 years ago
  8. 905c45f Use Triple.isOSDarwin() instead of comparing against Triple::Darwin. by Bob Wilson · 13 years ago
  9. 2ed7cb6 PR11124: Don't overwrite memory outside of a base class when performing zero-initialization before running its constructor. by Eli Friedman · 13 years ago
  10. 3d5f955 Add a preprocessor callback that is invoked every time the 'defined' by Douglas Gregor · 13 years ago
  11. f38eaa4 Revert the -Wc++98-compat flag because dgregor doesn't like it. by Jeffrey Yasskin · 13 years ago
  12. 5fa065b objc-arc: 'Class' property is implicitly __unsafe_unretained. // rdar://10239594 by Fariborz Jahanian · 13 years ago
  13. 575fdda Rename -Wc++0x-compat, -Wc++0x-extensions and -Wc++0x-narrowing from c++0x to by Richard Smith · 13 years ago
  14. cda5782 Extend -Wno-sizeof-array-argument to strncpy and friends. by Nico Weber · 13 years ago
  15. 48a9d18 Implement the first piece of a -Wc++98-compat flag so that people can build in by Jeffrey Yasskin · 13 years ago
  16. 73fb350 Recommit: by Eric Christopher · 13 years ago
  17. 84cbd4b Add triple for RHEL 5 to the libpath collecting logic. by Benjamin Kramer · 13 years ago
  18. 9e76172 Tweak -Wuninitialized's handling of 'int x = x' to report that as the root cause of an uninitialized variable IFF there are other uses of that uninitialized variable. Fixes <rdar://problem/9259237>. by Ted Kremenek · 13 years ago
  19. 64a371f HasFormOfMemberPointer implies IsAddressOfOperand for an overload set. Simplify by Douglas Gregor · 13 years ago
  20. ee697e6 Allow calling an overloaded function set by taking the address of the by Douglas Gregor · 13 years ago
  21. 2f7aa99 TCE target: conversion of OpenCL reqd_work_group_size attr to metadata by Peter Collingbourne · 13 years ago
  22. 5f1c822 Allow for annotate attributes after access specifiers. When such by Erik Verbruggen · 13 years ago
  23. 13f8daf Fix crash-on-invalid, improve error recovery, and test coverage for missing colon after access specifiers in C++ by David Blaikie · 13 years ago
  24. 5fad9b8 When we determine that a function template specialization produced as by Douglas Gregor · 13 years ago
  25. 18c407f Change __extension__ to disable only diagnostics controlled by -pedantic. by Bob Wilson · 13 years ago
  26. 6700415 Add returns_twice to functions that are known to return twice. This implements by Rafael Espindola · 13 years ago
  27. d768150 Implement built-in macro '__has_warning', which allows one to query if a warning flag is valid. Fixes <rdar://problem/10263428>. by Ted Kremenek · 13 years ago
  28. 4671730 We do parse hexfloats in C++11; make it actually work. by Douglas Gregor · 13 years ago
  29. 28e0635 Revert file/scope handling patches. gdb testing revealed a couple of bugs. by Eric Christopher · 13 years ago
  30. d596c4d The Objective-C rewriter uses the fragile ABI, always. by Douglas Gregor · 13 years ago
  31. 920c9c1 Fix typo in name of diagnostic. by Ted Kremenek · 13 years ago
  32. 209dfbe Handle the case where preprocessor entities are not received in order, by Argyrios Kyrtzidis · 13 years ago
  33. 4a8dfb5 Introduce BalancedDelimiterTracker, to better track open/close by Douglas Gregor · 13 years ago
  34. d41679d Teach __has_nothrow_assign not to complain about access (GCC and EDG by Douglas Gregor · 13 years ago
  35. 55acb0d Removed extra line in comment. by Jim Goodnow II · 13 years ago
  36. 7e1812f Add target info for Linux on PPC & Sparc. Patch by Hal Finkel! by Anton Korobeynikov · 13 years ago
  37. 796dbfb Introduce SourceManager::getFileLoc which returns a file location by Argyrios Kyrtzidis · 13 years ago
  38. 5fa6a04 constexpr: don't consider class types with mutable members to be literal types. by Richard Smith · 13 years ago
  39. c6bfbca Remember to set the location in EmitGlobalVariable to the current decl by Eric Christopher · 13 years ago
  40. d5e1d60 Handle Perforce-style conflict markers like normal conflict markers. Perforce by Richard Smith · 13 years ago
  41. 13546a8 objc: note location of the previously declared property in the diagnostic. by Fariborz Jahanian · 13 years ago
  42. 6dbba4f Catch placeholder types in DefaultLvalueConversion by John McCall · 13 years ago
  43. 336c8f7 objc rewriter: Restore objc_msgSend_stret/objc_msgSendSuper_stret declaration by Fariborz Jahanian · 13 years ago
  44. 4b2d549 Start handling debug line and scope information better: by Eric Christopher · 13 years ago
  45. ab5278e 80-column and tab cleanup. by Eric Christopher · 13 years ago
  46. 944542e Reorder this to make it easier to add more changes for a location set. by Eric Christopher · 13 years ago
  47. 8a1d6a5 PR11062: Make C99 inlining work properly for names with associated builtin libcalls. by Eli Friedman · 13 years ago
  48. f10d917 Constant expression evaluation: refactor value initialization and scalar list initialization into base class. by Richard Smith · 13 years ago
  49. 9e3c20b Silence some -Wuninitialized false positives with gcc. by Eli Friedman · 13 years ago
  50. 98d86b9 Add a -Wc++0x-compat warning for C++11 keywords used as identifiers when in by Richard Smith · 13 years ago
  51. 2492c89 Add support for viewing the module graph via Graphviz, for debugging purposes. by Douglas Gregor · 13 years ago
  52. 92d6d40 Driver: Add support for a new -nostdlibinc option. by Daniel Dunbar · 13 years ago
  53. a268fc0 Frontend: Replace -nostdinc by -nostdsysteminc (which is just system include by Daniel Dunbar · 13 years ago
  54. 71fdf46 [analyzer] Remove an unused member variable. by Anna Zaks · 13 years ago
  55. d8d3ced Rename SemaCXXCast.cpp to SemaCast.cpp. by John McCall · 13 years ago
  56. b1576f7 [analyzer] CheckerContext updates checkDst in it's destructor, so make sure the object is destructed before checkDst is used. by Anna Zaks · 13 years ago
  57. c892c5f For the FileChanged Preprocessor callback, when exiting a file, pass its FileID. by Argyrios Kyrtzidis · 13 years ago
  58. c800f68 [analyzer] Fix a typo. by Anna Zaks · 13 years ago
  59. 769bb2d Get rid of ShouldDeleteMoveConstructor. by Sean Hunt · 13 years ago
  60. c32d684 Consolidate copy constructor deletion into ShouldDeleteSpecialMember. by Sean Hunt · 13 years ago
  61. a7957ff [analyzer] Warn about the use of insecure, deprecated vfork() function PR11053 (http://llvm.org/bugs/show_bug.cgi?id=11053). by Anna Zaks · 13 years ago
  62. dd4a889 Allow regparm attribute for PNaCl target by David Meyer · 13 years ago
  63. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  64. f11dbe9 [Microsoft] If -fms-compatibility, then downgrade missing typename error to warning at function prototype scope. by Francois Pichet · 13 years ago
  65. fac9467 Add typo correction for type names. by Kaelyn Uhrain · 13 years ago
  66. 567c600 Fixed natural stack alignment for Linux x86-32. Thanks Eli. by Lang Hames · 13 years ago
  67. f09ce39 Clean up DiagnoseInvalidRedeclaration a bit by Kaelyn Uhrain · 13 years ago
  68. d7e19ce Move a couple chunks of ActOnFunctionDeclarator to separate functions by Kaelyn Uhrain · 13 years ago
  69. 2c712f5 Move some bool flags out of function parameter lists. by Kaelyn Uhrain · 13 years ago
  70. 2afd766 Only accept a typo correction if it doesn't trigger additional errors by Kaelyn Uhrain · 13 years ago
  71. db92422 Extend lvalue evaluation in ExprConstant.cpp to handle CK_LValueBitCast (which is completely trivial). PR8836. by Eli Friedman · 13 years ago
  72. f4f5003 Update target data strings for ARM and X86 to include the natural stack by Lang Hames · 13 years ago
  73. b008012 Don't crash in Sema::IsSimplyAccessible if the declaration is not a C++ class member. Fixes PR11108. by Douglas Gregor · 13 years ago
  74. 158ebfb A couple random preprocessor changes that got ported from C99 to C++11. by Eli Friedman · 13 years ago
  75. 13e1bca When performing a user-defined conversion via a constructor, be sure by Douglas Gregor · 13 years ago
  76. 46eaf77 [analyzer] Teach the static analyzer about CXXForRangeStmt. Patch by Jim Goodnow II! by Ted Kremenek · 13 years ago
  77. e50b015 Rework construction of CXXForRangeStmt not to recycle the same DeclRefExpr in multiple subexpressions. This breaks the tree structure by Ted Kremenek · 13 years ago
  78. a696ece [libclang] Implement ConcurrencyCheck using a recursive mutex to allow re-entrancy in the same thread. by Argyrios Kyrtzidis · 13 years ago
  79. 9d1bbea objc: err on a property designated both atomic and nonatomic. // rdar://10260017 by Fariborz Jahanian · 13 years ago
  80. c91562c Revert r140009, about disabling clang's builtin in -fms-compatibility mode. by Francois Pichet · 13 years ago
  81. 8642f21 Link in Scrt1.o instead of crt1.o when -pie is specified. by Roman Divacky · 13 years ago
  82. 089e893 When substituting into a sizeof parameter pack expression in a context by Douglas Gregor · 13 years ago
  83. 30aa951 Partially revert r141374: allow use of libc++ prior to Mac OS X 10.7. by Bob Wilson · 13 years ago
  84. e305e81 When an included non-system directory duplicates a system directory the clang by Chad Rosier · 13 years ago
  85. a6b8b2c Constant expression evaluation refactoring: by Richard Smith · 13 years ago
  86. fcdd2cb Don't suggest 'noreturn' for function template instantiations, because by Douglas Gregor · 13 years ago
  87. 1055393 Give nicer note when a member redeclaration has or lacks 'const' by Kaelyn Uhrain · 13 years ago
  88. 36bc2c6 objc: Some refactoring of overriding method decl. code for future work. by Fariborz Jahanian · 13 years ago
  89. f8b6e15 Don't analyze comparisons in type- or value-dependent by Douglas Gregor · 13 years ago
  90. d61db33 Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289. by Douglas Gregor · 13 years ago
  91. 6e43375 constexpr: Disable checking of constructor member initializer lists for by Richard Smith · 13 years ago
  92. 5a706dc Don't complain about qualified property or ivar access when the by Douglas Gregor · 13 years ago
  93. d24c306 When adding a direct initializer to a declaration, allow the by Douglas Gregor · 13 years ago
  94. 147545d Parse the initializer for a class member after handling its by Douglas Gregor · 13 years ago
  95. 25aaff9 Always add the built-in overload candidates for operators &&, ||, and by Douglas Gregor · 13 years ago
  96. b8da98a Another case of HadMultipleCandidates being used uninitialized. by Benjamin Kramer · 13 years ago
  97. e16da07 Begin work consolidating ShouldDelete* functions. by Sean Hunt · 13 years ago
  98. 6e0afc8 Parse LLVM command line arguments after plugins have been loaded by Tobias Grosser · 13 years ago
  99. 883af83 Implement the restrictions in C++ [class.friend]p6, which disallow by Douglas Gregor · 13 years ago
  100. b5ae92f Diagnose attempts to qualify the name of an instance variable or by Douglas Gregor · 13 years ago