1. b7fe579 Teach the FixIt in DiagnoseInvalidRedeclaration how to replace the written by Kaelyn Uhrain · 12 years ago
  2. ef094a1 Ignore corrections to functions with bodies when deciding which by Kaelyn Uhrain · 12 years ago
  3. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  4. 1ea6744 objective-c: merge deprecated/unavailable attributes to by Fariborz Jahanian · 12 years ago
  5. abe21e3 Disable -Wunique-enum for anonymous enums. by David Blaikie · 12 years ago
  6. 7af7de7 Add new -Wunique-enum which will warn on enums which all elements have the by Richard Trieu · 12 years ago
  7. 7f7c42b Fix indentation. by David Blaikie · 12 years ago
  8. 3f66406 Centralize the handling of the "attribute declaration must precede definition" by Rafael Espindola · 12 years ago
  9. 0a4a23a A selector match between two Objective-C methods does *not* guarantee by Douglas Gregor · 12 years ago
  10. dc3eb6a Remove word 'block' from option and diagnostic I added in r156825. by Fariborz Jahanian · 12 years ago
  11. 8f674a8 objective-c nonfragile abi: discourage ivar declarations by Fariborz Jahanian · 12 years ago
  12. 0cd00be objc: allow typedef'ing an id to a pointer to a c-struct only. by Fariborz Jahanian · 12 years ago
  13. 599f1b7 Refactor all the by Rafael Espindola · 12 years ago
  14. 420efd8 Produce a warning for mismatched section attributes. Completest pr9356. by Rafael Espindola · 12 years ago
  15. bf9da1f Fix a recent regression with the merging of format attributes. by Rafael Espindola · 12 years ago
  16. 98ae834 Fix an old (2009) FIXME: by Rafael Espindola · 12 years ago
  17. 1de6a6c objective-c. Fixes a 'fixit' where location of by Fariborz Jahanian · 12 years ago
  18. 7e9f8af Update the SelfReferenceChecker. Refactored some of the visitor methods. by Richard Trieu · 12 years ago
  19. 3b29436 Split mergeAvailabilityAttr out of handleAvailabilityAttr. This is important by Rafael Espindola · 12 years ago
  20. f502d8e Switch RequireLiteralType() off of PartialDiagnostic. by Douglas Gregor · 13 years ago
  21. a058fd4 Revert most of r154844, which was disabled in r155975. Keep around the by Richard Smith · 13 years ago
  22. 12f3297 Try harder to recognize hidden tag type names in potential declarations instead by Kaelyn Uhrain · 13 years ago
  23. 2c0abf4 Add FixItHint for -Wnull-conversion to initialize with an appropriate literal. by David Blaikie · 13 years ago
  24. e7be109 HandleDeclarator() returns NULL for semantic disasters. Deal with it by Douglas Gregor · 13 years ago
  25. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 13 years ago
  26. 392b3f5 Imrpove the note text for when a non-type decl hides a tag type by Kaelyn Uhrain · 13 years ago
  27. aec2ac6 Add note to help explain why a tag such as 'struct' is needed to refer by Kaelyn Uhrain · 13 years ago
  28. a4156b8 Fix regression in r154844. If necessary, defer computing adjusted destructor by Richard Smith · 13 years ago
  29. 87162c2 PR12569: Instantiate exception specifications of explicit instantiations by Richard Smith · 13 years ago
  30. 74e2fc3 Implement the last part of C++ [class.mem]p2, delaying the parsing of by Douglas Gregor · 13 years ago
  31. cefc3af Implement C++11 [expr.prim.general]p3, which permits the use of 'this' by Douglas Gregor · 13 years ago
  32. a1c4f7c PR12500: Improve the wording of the diagnostic for a redefinition of a name by Richard Smith · 13 years ago
  33. cf2fa2f Fixed scoping error for late parsed attributes in nested classes. by DeLesley Hutchins · 13 years ago
  34. 6d858d9 Replace the workaround from r153445 with a proper fix. by Kaelyn Uhrain · 13 years ago
  35. 1c931be Implement DR1402: if a field or base class is not movable, the derived class's by Richard Smith · 13 years ago
  36. c5a89a1 Basic semantic analysis support for inheriting constructor declarations in by Richard Smith · 13 years ago
  37. 6960587 Unify and fix our checking of C++ [dcl.meaning]p1's requirements by Douglas Gregor · 13 years ago
  38. 0179868 When diagnosing an invalid out-of-line redeclaration, don't permit by Douglas Gregor · 13 years ago
  39. 4ca93d9 Delay checking of dependent underlying types for redeclarations of member by Richard Smith · 13 years ago
  40. 3343fad When defining a forward-declared enum, don't try to attach the definition to by Richard Smith · 13 years ago
  41. 1af83c4 Support for definitions of member enumerations of class templates outside the by Richard Smith · 13 years ago
  42. 42acead Diagnose tag and class template declarations with qualified by Douglas Gregor · 13 years ago
  43. 0961a01 Warn on flexible array members when in C89 mode, with -pedantic. by David Chisnall · 13 years ago
  44. 878416d Remove a variable rendered unused by r152750. by Richard Smith · 13 years ago
  45. f1c66b4 Instantiating a class template should not instantiate the definition of any by Richard Smith · 13 years ago
  46. 9cda03f Ensure that default arguments are handled correctly in sub scopes. For example: by James Molloy · 13 years ago
  47. b03a9df PR11925: A function can't have a variably-modified return type. Not even in C++. by Richard Smith · 13 years ago
  48. 1b7f9cb Fix PR10447: lazily building name lookup tables for DeclContexts was broken. by Richard Smith · 13 years ago
  49. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  50. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 13 years ago
  51. 1659c37 Slightly tweak this condition. "isTransparentContext()" was checking whether an by Nick Lewycky · 13 years ago
  52. 8d17681 Could not find this in C99. Perhaps this rule comes from a DR, but in any case by Nick Lewycky · 13 years ago
  53. 216f78b Improve our semantic error recovery. by Argyrios Kyrtzidis · 13 years ago
  54. 509fb3e lldb support: under debugger support flag, when sending message by Fariborz Jahanian · 13 years ago
  55. 96a0014 [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). by Daniel Dunbar · 13 years ago
  56. 3d13c5a [AST] Reduce Decl::getASTContext() calls. by Daniel Dunbar · 13 years ago
  57. ffea6b4 Fix -Wuninitialized to catch the case of a class being initialized with a call by Richard Trieu · 13 years ago
  58. 16f1f71 Reapply r151638 and r151641. by James Molloy · 13 years ago
  59. 32a9a75 Revert r151638 because it causes assertion hit on PCH creation for Cocoa.h by Argyrios Kyrtzidis · 13 years ago
  60. bf359c9 Un-break clang based on r151638 - What was meant to be a trivial variable name change went horribly wrong and I forgot to retest afterwards. by James Molloy · 13 years ago
  61. fbcf040 Correctly track tags and enum members defined in the prototype of a function, and ensure they are properly scoped. by James Molloy · 13 years ago
  62. ea7c1e2 Don't assert when trying to diagnose why a class with a constructor template is by Richard Smith · 13 years ago
  63. 5c89c39 Try to handle qualifiers more consistently for array InitListExprs. Fixes <rdar://problem/10907510>, and makes the ASTs a bit more self-consistent. by Eli Friedman · 13 years ago
  64. af30029 modern objc translator. Finish off first cut of the by Fariborz Jahanian · 13 years ago
  65. ee18803 When we resolve the type of an 'auto' variable, clear out the linkage by Douglas Gregor · 13 years ago
  66. d41854a Remove a debugging line accidentally left in the last commit. by David Chisnall · 13 years ago
  67. 5f3c163 Implement #pragma redefine_extname. by David Chisnall · 13 years ago
  68. 3336353 Avoid infinite mutual recursion in DiagnoseInvalidRedeclaration. by Kaelyn Uhrain · 13 years ago
  69. b9c64d8 C++11 allows unions to have static data members. Remove the corresponding by Richard Smith · 13 years ago
  70. a2d7dfa Shift Microsoft enum extensions from -fms-extensions to -fms-compatibility, so -fms-extensions doesn't affect enum semantics in incompatible ways. <rdar://problem/10657186>. by Eli Friedman · 13 years ago
  71. 75d8ba3 Warn about non-int main() results in GNU C mode instead of erroring. by John McCall · 13 years ago
  72. 7ca4850 Deal with a horrible C++11 special case. If a non-literal type has a constexpr by Richard Smith · 13 years ago
  73. 86c3ae4 Update constexpr implementation to match CWG's chosen approach for core issues by Richard Smith · 13 years ago
  74. 168319c Employ DirectList initialized entities to properly sort through some initialization edge cases. by Sebastian Redl · 13 years ago
  75. 5b9cc5d Represent C++ direct initializers as ParenListExprs before semantic analysis by Sebastian Redl · 13 years ago
  76. d37b360 PR11684, core issue 1417: by Richard Smith · 13 years ago
  77. 2c0bf24 Adding support for warning when a non-C compatible user-defined type is returned from an extern "C" function. by Aaron Ballman · 13 years ago
  78. 76e3da5 When completing a lambda expression, make sure to check and attach the by Douglas Gregor · 13 years ago
  79. 11e70d7 Fix a bug in semantic analysis involving anonymous structs and flexible arrays. by Eli Friedman · 13 years ago
  80. 04ca252 Fix a couple of nasty bugs involving negative enum constants. <rdar://problem/10760113>. by Eli Friedman · 13 years ago
  81. 38a4291 Removed redundant location info from ElaboratedTypeLoc / DependentNameLoc / DependentTSTLoc. Uniformed names referencing elaborated keyword. No intended functionality changes. by Abramo Bagnara · 13 years ago
  82. d79093a constexpr: Implement DR1358: An instantiation of a constexpr function which by Richard Smith · 13 years ago
  83. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  84. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 13 years ago
  85. 282e7e6 In C++11 mode, when an integral constant expression is desired and we have a by Richard Smith · 13 years ago
  86. a506586 Disallow constexpr main. by Richard Smith · 13 years ago
  87. acbabf1 Don't warn about anonymous struct/union in C11. by Hans Wennborg · 13 years ago
  88. d2cce13 Add some code to accurately perform odr-used marking for variables per the C++11 rules. by Eli Friedman · 13 years ago
  89. c645ddf objc: don't crash if primary class is missing and continuation class by Fariborz Jahanian · 13 years ago
  90. ee625af Fix crash on invalid in microsoft anonymous struct extension. by Nico Weber · 13 years ago
  91. 16e46dd Make the callback object to Sema::CorrectTypo mandatory. by Kaelyn Uhrain · 13 years ago
  92. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 13 years ago
  93. fad03b7 Avoid redundant NNS qualification in constructor/destructor names. by Abramo Bagnara · 13 years ago
  94. 1acbe5e Replace a hack to handle NSLog/NSLogv in sema by declaring them as Library Builtins. by Jean-Daniel Dupas · 13 years ago
  95. a5ee634 Small code cleanup/simplification in Sema::ClassifyName. by Kaelyn Uhrain · 13 years ago
  96. b832f6d Minor fixups for auto deduction of initializer lists. by Sebastian Redl · 13 years ago
  97. 6b6fb4f In Microsoft Mode, disable the C++11 strict integral conversion rules for enumerator that were introduced with r148439. Otherwise MSVC headers won't compile in C++ 11 mode. by Francois Pichet · 13 years ago
  98. 7b9ff0c Instantiate dependent attributes when instantiating templates. by DeLesley Hutchins · 13 years ago
  99. 8ef7b20 constexpr: converted constant expression handling for enumerator values, case by Richard Smith · 13 years ago
  100. 43e875d Convert SemaDecl.cpp to pass callback objects to CorrectTypo. by Kaelyn Uhrain · 13 years ago