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