1. d8d3ced Rename SemaCXXCast.cpp to SemaCast.cpp. by John McCall · 13 years ago
  2. 769bb2d Get rid of ShouldDeleteMoveConstructor. by Sean Hunt · 13 years ago
  3. c32d684 Consolidate copy constructor deletion into ShouldDeleteSpecialMember. by Sean Hunt · 13 years ago
  4. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  5. f11dbe9 [Microsoft] If -fms-compatibility, then downgrade missing typename error to warning at function prototype scope. by Francois Pichet · 13 years ago
  6. fac9467 Add typo correction for type names. by Kaelyn Uhrain · 13 years ago
  7. f09ce39 Clean up DiagnoseInvalidRedeclaration a bit by Kaelyn Uhrain · 13 years ago
  8. d7e19ce Move a couple chunks of ActOnFunctionDeclarator to separate functions by Kaelyn Uhrain · 13 years ago
  9. 2c712f5 Move some bool flags out of function parameter lists. by Kaelyn Uhrain · 13 years ago
  10. 2afd766 Only accept a typo correction if it doesn't trigger additional errors by Kaelyn Uhrain · 13 years ago
  11. b008012 Don't crash in Sema::IsSimplyAccessible if the declaration is not a C++ class member. Fixes PR11108. by Douglas Gregor · 13 years ago
  12. 13e1bca When performing a user-defined conversion via a constructor, be sure by Douglas Gregor · 13 years ago
  13. 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
  14. 9d1bbea objc: err on a property designated both atomic and nonatomic. // rdar://10260017 by Fariborz Jahanian · 13 years ago
  15. 089e893 When substituting into a sizeof parameter pack expression in a context by Douglas Gregor · 13 years ago
  16. a6b8b2c Constant expression evaluation refactoring: by Richard Smith · 13 years ago
  17. fcdd2cb Don't suggest 'noreturn' for function template instantiations, because by Douglas Gregor · 13 years ago
  18. 1055393 Give nicer note when a member redeclaration has or lacks 'const' by Kaelyn Uhrain · 13 years ago
  19. 36bc2c6 objc: Some refactoring of overriding method decl. code for future work. by Fariborz Jahanian · 13 years ago
  20. f8b6e15 Don't analyze comparisons in type- or value-dependent by Douglas Gregor · 13 years ago
  21. d61db33 Per C++ [class.bit]p2, unnamed bit-fields are not members. Fixes PR10289. by Douglas Gregor · 13 years ago
  22. 6e43375 constexpr: Disable checking of constructor member initializer lists for by Richard Smith · 13 years ago
  23. 5a706dc Don't complain about qualified property or ivar access when the by Douglas Gregor · 13 years ago
  24. d24c306 When adding a direct initializer to a declaration, allow the by Douglas Gregor · 13 years ago
  25. 147545d Parse the initializer for a class member after handling its by Douglas Gregor · 13 years ago
  26. 25aaff9 Always add the built-in overload candidates for operators &&, ||, and by Douglas Gregor · 13 years ago
  27. e16da07 Begin work consolidating ShouldDelete* functions. by Sean Hunt · 13 years ago
  28. 883af83 Implement the restrictions in C++ [class.friend]p6, which disallow by Douglas Gregor · 13 years ago
  29. b5ae92f Diagnose attempts to qualify the name of an instance variable or by Douglas Gregor · 13 years ago
  30. 6d0468b Push "out-of-line" declarations into scope when their lexical/semantic by Douglas Gregor · 13 years ago
  31. ac57f0b The effective context of a friend function is its lexical context. Fixes PR9103. by Douglas Gregor · 13 years ago
  32. 6c73a29 For the various CF and NS attributes, don't complain if the parameter by Douglas Gregor · 13 years ago
  33. d8f5b33 Per the note in C++0x [temp.deduct.call]p4, don't attempt template by Douglas Gregor · 13 years ago
  34. 33ab0da A friend template specialization is also dependent if any of its by Douglas Gregor · 13 years ago
  35. 44efed0 Only allow taking the address of an expression of type 'overloaded by Douglas Gregor · 13 years ago
  36. b5a0187 Diagnose attempts to declare a non-static data member with a by Douglas Gregor · 13 years ago
  37. 43fe245 When building source location information for an _Atomic type, be sure by Douglas Gregor · 13 years ago
  38. 5c340e8 After instantiating a 'noexcept' expression, be sure to convert it to by Douglas Gregor · 13 years ago
  39. 8503564 Initialize the HadMultipleCandidates flag. by Benjamin Kramer · 13 years ago
  40. 1b46d8d objc: Do not warn about mismatch on Super's readonly property attribute, by Fariborz Jahanian · 13 years ago
  41. 54dec5f Silence a warning about casting away constness. by Benjamin Kramer · 13 years ago
  42. a789ca9 Whitespace by NAKAMURA Takumi · 13 years ago
  43. 13bf633 objc++: some minor cleanup and a test case by Fariborz Jahanian · 13 years ago
  44. 682eae2 Hack in a workaround for PR11082 until we have a proper fix. This by Chandler Carruth · 13 years ago
  45. 5e1cdac Rename TagDecl::isDefinition -> isCompleteDefinition by John McCall · 13 years ago
  46. 7d65f69 objc: Improve on diagnostic when atomic proeprty is synthesized by Fariborz Jahanian · 13 years ago
  47. a180f04 Move type-checking for C-style casts in C into the now-misnamed by John McCall · 13 years ago
  48. c076e37 Implicitly assume that a ObjC category to an unavailable interface is also unavailable; by Argyrios Kyrtzidis · 13 years ago
  49. 3a38744 When using an unavailable/deprecated interface Foo inside Foo's interface/implementation by Argyrios Kyrtzidis · 13 years ago
  50. b001de7 Support for C1x _Atomic specifier (see testcase). This is primarily being committed at the moment to help support C++0x <atomic>, but it should be a solid base for implementing the full specification of C1x _Atomic. by Eli Friedman · 13 years ago
  51. 57e264e objc++: For atomic properties of c++ class objec typet, appropriate by Fariborz Jahanian · 13 years ago
  52. b52c0dd PR11067: A definition of a constexpr static variable doesn't need an initializer if the in-class declaration had one. Such a declaration must be initialized by a constant expression. by Richard Smith · 13 years ago
  53. d120596 Added CXAvailability_NotAccessible to indicate that a declaration is available, but not accessible from the current code completion context. by Erik Verbruggen · 13 years ago
  54. b8b0e75 OpenCL: add a non-standard extension, cl_clang_storage_class_specifiers, by Peter Collingbourne · 13 years ago
  55. a1e797e Fix the rewriter, rdar://10234024. by Argyrios Kyrtzidis · 13 years ago
  56. 7cc58b4 Added a flag to identify resolved overloaded function references. by Abramo Bagnara · 13 years ago
  57. b45ae25 Refactor the analysis of C++ cast expressions so that even by John McCall · 13 years ago
  58. 53c8167 c: assignment/init of a function pointer whose function(s) by Fariborz Jahanian · 13 years ago
  59. 203050c Don't allow an rvalue reference to bind to the result of a calling a by Douglas Gregor · 13 years ago
  60. 118c6c0 Remove a nonsensical bit of code from InitListChecker::getStructuredSubobjectInit which was increasing the reserved size for an init list past its maximum possible size. Fixes PR11056, a case where we were reserving a bunch of memory for arrays that was never actually used. by Eli Friedman · 13 years ago
  61. 68af536 objc: Turn diagnostic on property type mismatch in by Fariborz Jahanian · 13 years ago
  62. 1711fc9 Improve location fidelity of objc decls. by Argyrios Kyrtzidis · 13 years ago
  63. 175fb10 objc arc: Suppress certain arc diagnostics on unavailable by Fariborz Jahanian · 13 years ago
  64. 09d8212 Fixed source range for template implicit instantiations. by Abramo Bagnara · 13 years ago
  65. c6ac322 objc++: Accessing explicit property of reference type need by Fariborz Jahanian · 13 years ago
  66. f87cced Propagate __attribute__((returns_twice)) from C to IL. by Rafael Espindola · 13 years ago
  67. 491306a Allow getting all source locations of selector identifiers in a ObjCMethodDecl. by Argyrios Kyrtzidis · 13 years ago
  68. 2071808 Allow getting all source locations of selector identifiers in a ObjCMessageExpr. by Argyrios Kyrtzidis · 13 years ago
  69. 8d9ed79 ArrayRef'ize ObjCMessageExpr by Argyrios Kyrtzidis · 13 years ago
  70. 11d7716 Pass from the parser the locations of selector identifiers when creating by Argyrios Kyrtzidis · 13 years ago
  71. da92a7f Don't keep NumSelectorArgs in the ObjCMethodDecl, the number can be derived from the selector. by Argyrios Kyrtzidis · 13 years ago
  72. 9513762 Pass all the locations of the selector identifiers for a message expression from the parser. by Argyrios Kyrtzidis · 13 years ago
  73. 78dd67e CUDA: diagnose invalid calls across targets by Peter Collingbourne · 13 years ago
  74. 1f24076 CUDA: add separate diagnostics for too few/many exec config args by Peter Collingbourne · 13 years ago
  75. af15b4d Add ConvertArgumentsForCall diagnostics for at least/at most n args by Peter Collingbourne · 13 years ago
  76. 8591a7f CUDA: diagnose unconfigured calls to global functions by Peter Collingbourne · 13 years ago
  77. cdda47f Parse attributes written in an ObjC method parameter type as by John McCall · 13 years ago
  78. e82247a Hey, maybe we shouldn't silently ignore decl attributes by John McCall · 13 years ago
  79. 9f569cc constexpr: semantic checking for constexpr functions and constructors. Based in by Richard Smith · 13 years ago
  80. 2cf031d Allow the results of cf_returns_not_retained function by John McCall · 13 years ago
  81. 717a20b Mark a TagDecl when it is free standing (e.g. "struct foo;") by Argyrios Kyrtzidis · 13 years ago
  82. f2e5945 objc arc: allow objc_returns_inner_pointer on methods that return by Fariborz Jahanian · 13 years ago
  83. f2cee5c Fix compiler warning about && in ||. by Benjamin Kramer · 13 years ago
  84. 9afbfbe Support dllimport and dllexport on x86-64 Windows. PR10978. Patch by Ruben Van Boxem. by Eli Friedman · 13 years ago
  85. 2dfdb94 [libclang] Introduce CXCursor_CXXAccessSpecifier for C++'s public:/private:/protected: specifiers. by Argyrios Kyrtzidis · 13 years ago
  86. 8dfac0b Add explicit attributes to mark functions as having had their by John McCall · 13 years ago
  87. 55dec86 constexpr functions are implicitly const. More tests to follow. by Richard Smith · 13 years ago
  88. 2d23ec2 Suggest adding 'constexpr' if the GNU extension for in-class initializers for static const float members is used in C++11 mode. by Richard Smith · 13 years ago
  89. 947be19 Mark the ExtWarn for in-class initialization of static const float members as a GNU extension. Don't extend the scope of this extension to all literal types in C++0x mode. by Richard Smith · 13 years ago
  90. 0f32caf Minor refactoring. Enumerators may inherit the deprecated/unavailable by Fariborz Jahanian · 13 years ago
  91. 2da7a51 In C++0x, static const volatile data members cannot be initialized in-class. by Richard Smith · 13 years ago
  92. c6d990a constexpr: semantic checking for constexpr variables. by Richard Smith · 13 years ago
  93. 97db726 c - Enumerators may inherit the deprecated/unavailable by Fariborz Jahanian · 13 years ago
  94. fe98da0 Add an ns_bridged attribute, used to specify that a by John McCall · 13 years ago
  95. 2f041d0 Like IBOutletCollection, it only makes sense to apply the IBOutlet annotation to Objective-C object types. Fixes <rdar://problem/10142685>. by Ted Kremenek · 13 years ago
  96. 4cd5791 Do not warn about empty format strings when there are no data arguments. Fixes <rdar://problem/9473155>. by Ted Kremenek · 13 years ago
  97. e37cdc4 Unnecessary else by David Blaikie · 13 years ago
  98. 78213e4 objc arc: Diagnose block pointer type mismatch when by Fariborz Jahanian · 13 years ago
  99. f9d9527 objc++ arc: Diagnose block pointer type mismatch when by Fariborz Jahanian · 13 years ago
  100. 8cd8de4 Tweak -Wobjc-missing-super-calls to not warning about missing [super dealloc] when in GC-only mode, and to not warning about missing [super finalize] when not using GC. by Ted Kremenek · 13 years ago