1. 80ee6e8 There's no good reason to track temporaries in ExprWithCleanups, by John McCall · 13 years ago
  2. 6b18e74 Don't crash when transforming an ill-formed pseudo-destructor by Douglas Gregor · 13 years ago
  3. 6ef9209 Introduce proper spacing after the Objective-C parameter qualifiers by Douglas Gregor · 13 years ago
  4. ccc9e76 Don't crash on invalid objc code. by Argyrios Kyrtzidis · 13 years ago
  5. 90f7b62 objc: Don't crash on missing @interface decl. // rdar://10415026 by Fariborz Jahanian · 13 years ago
  6. f21a92d objc-arc: 'readonly' property of retainable object by Fariborz Jahanian · 13 years ago
  7. 5b0c519 Mark the overloaded atomic builtins as having custom type checking, by Douglas Gregor · 13 years ago
  8. 6f9f03e Check pointer types for arguments of Neon load/store macros. rdar://9958031 by Bob Wilson · 13 years ago
  9. 1aa1721 Revert r143972, which didn't actually compile under -Wnon-virtual-dtor. by Matt Beaumont-Gay · 13 years ago
  10. da95f73 Clean up type flags for overloaded Neon builtins. No functional change. by Bob Wilson · 13 years ago
  11. dc4df51 There are some crazy cases that LookupMethodInReceiverType by John McCall · 13 years ago
  12. 66f8571 constexpr: static data members declared constexpr are required to have an by Richard Smith · 13 years ago
  13. 45fa560 When we notice that a member function is defined with "= delete" or "= by Douglas Gregor · 13 years ago
  14. 5cad822 When applying ARC __weak to a non-objc pointer, do not give error that by Argyrios Kyrtzidis · 13 years ago
  15. 8cacea5 Better fix for -Wnon-virtual-dtor by Matt Beaumont-Gay · 13 years ago
  16. 2c1227c Drastically simplify the mapping from the declaration corresponding to by Douglas Gregor · 13 years ago
  17. 90f93d4 Appease -Wnon-virtual-dtor by Matt Beaumont-Gay · 13 years ago
  18. 7864435 Rip out CK_GetObjCProperty. by John McCall · 13 years ago
  19. dbbdec9 Make sure when setting AttributesAsWritten of a property that they do not by Argyrios Kyrtzidis · 13 years ago
  20. acf9e82 Unbreak gcc build. by Benjamin Kramer · 13 years ago
  21. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  22. e71202e In ARC, when applying an ownership to a non-objc pointer, instead of ignoring it by Argyrios Kyrtzidis · 13 years ago
  23. 03ea52f Revert r143551. It is causing g++.dg/template/crash52.C test failure. by Devang Patel · 13 years ago
  24. 3b25216 objc: fixed enum type is supported in objc mode. by Fariborz Jahanian · 13 years ago
  25. 0d579b6 In C++ keep unavailable function calls in the AST, like in C/ObjC. by Argyrios Kyrtzidis · 13 years ago
  26. f3c0286 Extend IsSimplyAccessible to check for Objective-C instance variable by Douglas Gregor · 13 years ago
  27. a885dce Class can't be null in this context by Douglas Gregor · 13 years ago
  28. 17015ef Refactor Sema::IsSimplyAccessible slightly, to work on a DeclContext rather than a class by Douglas Gregor · 13 years ago
  29. fb35e8f When we're checking a friend function template in an out-of-line class by Douglas Gregor · 13 years ago
  30. 25270b6 Add a printing policy flag to suppress printing "<anonymous>::" prior by Douglas Gregor · 13 years ago
  31. ddb2147 Don't build member initializers for zero-length or incomplete arrays, by Douglas Gregor · 13 years ago
  32. c637d73 back out changes in r143399 and r143475. by Fariborz Jahanian · 13 years ago
  33. 21a2516 Fix various minor issues find via unreachable code warnings, from Ahmed Charles! by Douglas Gregor · 13 years ago
  34. 0b1beb7 Drastically simplify the mapping from the declaration corresponding to by Douglas Gregor · 13 years ago
  35. 48a98c7 objc: warn if a readonly property has a setter attribute too. // rdar://10357768 by Fariborz Jahanian · 13 years ago
  36. 5d8419c When we run into a constructor or destructor that is defined in the by Douglas Gregor · 13 years ago
  37. ea9f54a When we see an out-of-line definition of a member class template that by Douglas Gregor · 13 years ago
  38. 0505321 Find copy constructor needed to copy an rvalue reference by Fariborz Jahanian · 13 years ago
  39. 2eb0ce3 Silence a warning in -Asserts builds by Matt Beaumont-Gay · 13 years ago
  40. 0bfaf06 Downgrade err_iboutlet_object_type to a warning. It was breaking a bunch of code. We will reconsider promoting it back to an error later. by Ted Kremenek · 13 years ago
  41. cc7a648 Enable function call and some overload resolution with parameters of aggregate class type and initializer list arguments. by Sebastian Redl · 13 years ago
  42. 64f45a2 Fix the representation of wide strings in the AST and IR so that it uses the native representation of integers for the elements. This fixes a bunch of nastiness involving by Eli Friedman · 13 years ago
  43. 76852c2 Rework the AST for the initializer of a delegating constructor, so by Douglas Gregor · 13 years ago
  44. 7a420df Add missing lvalue-to-rvalue conversion. by Eli Friedman · 13 years ago
  45. 0216df8 Fixed FriendDecl source locations. by Abramo Bagnara · 13 years ago
  46. 51f4708 Rename Expr::Evaluate to Expr::EvaluateAsRValue to make it clear that it will by Richard Smith · 13 years ago
  47. fc2eff5 objc-arc: desugar certain type and improve on diagnostic for by Fariborz Jahanian · 13 years ago
  48. 6ee5492 [ARC] Do not transfer ARC ownership if the cast is going to result in r-value, by Argyrios Kyrtzidis · 13 years ago
  49. 6d09f01 objective-c arc: type-casting of an objc pointer to by Fariborz Jahanian · 13 years ago
  50. aa9807a Reflow code. No intended functionality change. by Benjamin Kramer · 13 years ago
  51. 9c129f8 Add (hopefully) the last missing lvalue-to-rvalue conversion. Add an assertion by Richard Smith · 13 years ago
  52. ac51650 Be sure to build a dependent expression when we see by John McCall · 13 years ago
  53. 55733de Fix for PR9751 to change the behavior of -Wformat warnings. If the format by Richard Trieu · 13 years ago
  54. 61ffd09 Add missing lvalue-to-rvalue conversion to vector splat casts. by Richard Smith · 13 years ago
  55. 4f87062 Fix some cases where a CK_IntegralCast was being used to convert an lvalue to an by Richard Smith · 13 years ago
  56. 9c1ba40 objc: fix an ir-gen crash caused by recent by Fariborz Jahanian · 13 years ago
  57. eee242f Make the loading of information attached to an IdentifierInfo from an by Douglas Gregor · 13 years ago
  58. 4a7dc8a Make use of the parameter in Sema::ActOnObjCTemporaryExitContainerContext. by Argyrios Kyrtzidis · 13 years ago
  59. 458bacf Fix crash on an @interface nested inside @implementation, rdar://10336158 by Argyrios Kyrtzidis · 13 years ago
  60. 1104d9b For the "'@end' is missing in implementation context" point at the location of '@'. by Argyrios Kyrtzidis · 13 years ago
  61. 90eed21 Do not warn when weak-import attribute is applied to enum by Fariborz Jahanian · 13 years ago
  62. 9138b4e Pull out conversion on LHS of -> and . into its own function. This happens by Richard Smith · 13 years ago
  63. 3bfb571 Compute the promoted integer type of fixed-width enums correctly. Found by inspection. by Eli Friedman · 13 years ago
  64. f1f6d85 Fix crash due to missing array-to-pointer decay when instantiating an unresolved by Richard Smith · 13 years ago
  65. 601d2ee UnresolvedMemberExprs need lvalue-to-rvalue conversions during template by Richard Smith · 13 years ago
  66. 3c3b7f9 Restore r142914 and r142915, now with missing file and apparent by John McCall · 13 years ago
  67. 327a50f Revert r142914 and r142915, due to possibly missing file. by NAKAMURA Takumi · 13 years ago
  68. 8628862 Pull the pseudo-object stuff into its own file. by John McCall · 13 years ago
  69. a1b852f Introduce a placeholder type for "pseudo object" by John McCall · 13 years ago
  70. a01c711 Don't forget the lvalue-to-rvalue conversion on the LHS when instantiating a by Richard Smith · 13 years ago
  71. 65019ac Check for unexpanded parameter packs in the name that guards a by Douglas Gregor · 13 years ago
  72. ba0513d Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 13 years ago
  73. 97f9fe0 Don't forget the lvalue-to-rvalue conversion on the LHS of an -> when rebuilding by Richard Smith · 13 years ago
  74. 3896fc5 Rework Microsoft __if_exists/__if_not_exists parsing and semantic by Douglas Gregor · 13 years ago
  75. 3eafbb8 When we perform a lookup for a dependent name that is a member of an by Douglas Gregor · 13 years ago
  76. 9158902 Minor refactoring of my last patch. Per Doug's suggestion. by Fariborz Jahanian · 13 years ago
  77. 1d26f48 Rename AnalysisContext to AnalysisDeclContext. Not only is this name more accurate, but it frees up the name AnalysisContext for other uses. by Ted Kremenek · 13 years ago
  78. 0b64ba9 Fix grammar for C++11 alignment specifiers, and add a few FIXMEs. by Peter Collingbourne · 13 years ago
  79. fef2189 Diagnose unexpanded parameter packs in member initialisers (including by Peter Collingbourne · 13 years ago
  80. dc69be2 Clean up duplicated code in Sema::BuildMemInitializer. by Peter Collingbourne · 13 years ago
  81. 05b2127 Improve unexpanded parameter pack diagnostics by using UPPC_Initializer here. by Peter Collingbourne · 13 years ago
  82. 0661bd0c Attach class template attributes to the templated CXXRecordDecl, by Peter Collingbourne · 13 years ago
  83. b1b5daf [analyzer] Remove LocationContext creation methods from AnalysisManager, and change clients to use AnalysisContext instead. by Ted Kremenek · 13 years ago
  84. 5e745da Only emit implicit constant conversion truncation warnings in reachable code. Apparently this is what GCC does, and some code depends on this. Fixes <rdar://problem/10321089>. by Ted Kremenek · 13 years ago
  85. ee28a4b Fixes a minor hick up to my last patch. by Fariborz Jahanian · 13 years ago
  86. 7fda400 objc: private methods can have their attributes, no diagnostic is required. by Fariborz Jahanian · 13 years ago
  87. 21f77cd Don't try to set the "array filler" in a InitListExpr twice. by Argyrios Kyrtzidis · 13 years ago
  88. 13c7fcc c++: support gcc's application of weak attribute on by Fariborz Jahanian · 13 years ago
  89. f1ac637 Thread safety analysis refactoring: invalid lock expressions. by DeLesley Hutchins · 13 years ago
  90. 3ff86f7 objective-c: Diagnose redeclaration of private by Fariborz Jahanian · 13 years ago
  91. 95e5510 When performing name lookup for the previous declaration of a field, by Douglas Gregor · 13 years ago
  92. 7a8a2e3 Permit auto SCS on parameter declarations, C++03 [dcl.stc]p2 by Peter Collingbourne · 13 years ago
  93. 0e9e981 Add -Wc++98-compat diagnostics for jumps which bypass initialization of non-POD by Richard Smith · 13 years ago
  94. ef47d27 When fixing up the storage class for an anonymous union, don't mark by Douglas Gregor · 13 years ago
  95. cb8f951 There's no point in marking a declaration invalid just because it by Douglas Gregor · 13 years ago
  96. 8e0c118 Diagnose class template (partial) specializations that occur in the by Douglas Gregor · 13 years ago
  97. ba4ee9a When we parse something that looks like a templated friend tag but by Douglas Gregor · 13 years ago
  98. 95aafb2 Add -Wc++98-compat warning for enumerations in nested name specifiers. by Richard Smith · 13 years ago
  99. 82c8ca1 FixIt insert 'static' for anonymous unions at global or namespace scope. by David Blaikie · 13 years ago
  100. f6f876c Add a fixit to remove storage specifiers on anonymous enums. by David Blaikie · 13 years ago