- Oct 26, 2010
-
-
John McCall authored
anymore. llvm-svn: 117357
-
John McCall authored
conversion to id over conversion to void*. llvm-svn: 117355
-
John McCall authored
the same rank as conversions of normal pointers to 'void*'. Also, resurrect a test case. Fixes rdar://problem/8592139 llvm-svn: 117354
-
Douglas Gregor authored
until after we've checked/promoted the argument. Hopefully fixes the Emacs regression due to my recent change that expanded type-checking in the presence of K&R function definitions. llvm-svn: 117353
-
John McCall authored
covariant/contravariant overrides and implementations, but do so under control of a new flag (-Wno-objc-covariant-overrides, which yes does cover contravariance too). *At least* the covariance cases will probably be enabled by default shortly, but that's not totally uncontroversial. llvm-svn: 117346
-
Fariborz Jahanian authored
non-trivial copy constructors. // rdar: //8540501. A test will be added to llvm nightly tests. llvm-svn: 117324
-
- Oct 25, 2010
-
-
Douglas Gregor authored
called. Fixes another aspect of PR8314. llvm-svn: 117308
-
Douglas Gregor authored
function definition, we should still use a prototype to type-check and convert the function arguments, if such a prototype exists. Fixes PR8314. llvm-svn: 117305
-
David Chisnall authored
Only warn for mismatched types in Objective-C methods when they are incompatible, not when they are simply different. Now we test whether the difference in types breaks the principle of substitutability, rather than whether they are different. A common idiom in Objective-C is to provide a definition of a method in a subclass that returns a more-specified version of an object than the superclass. This does not violate the principle of substitutability, because you can always use the object returned by the subclass anywhere that you could use the type returned by the superclass. It was, however, generating warnings with clang, leading people to believe that semantically correct code was incorrect and requiring less accurate type specification and explicit down-casts (neither of which is a good thing to encourage). This change ensures that any method definition has parameter and return types that make it accept anything that something conforming to the declaration may pass and return something that the caller will expect, but allows stricter definitions. llvm-svn: 117271
-
Chandler Carruth authored
This adds them where missing, and traces them through PCH. We fix at least one bug in the extents found by the Index library, and make a lot of refactoring tools which care about the exact formulation of a constructor call easier to write. Also some minor cleanups to more consistently follow the friend pattern instead of the setter pattern when rebuilding a serialized AST. Patch originally by Samuel Benzaquen. llvm-svn: 117254
-
- Oct 23, 2010
-
-
Douglas Gregor authored
name *in the same scope*, but not across scopes. Implement the highlighted condition. llvm-svn: 117212
-
Anders Carlsson authored
llvm-svn: 117184
-
John McCall authored
llvm-svn: 117182
-
Douglas Gregor authored
members in class subobjects of different types. So long as the underlying declaration sets are the same, and the declaration sets involve non-instance members, this is not an ambiguity. llvm-svn: 117163
-
- Oct 22, 2010
-
-
Douglas Gregor authored
the current context's redeclaration context, ignoring using directives. Fixes PR8430. llvm-svn: 117097
-
- Oct 21, 2010
-
-
Ted Kremenek authored
Tweak diagnostics for redeclaration of a @property in a class extension where the redelcaration and original declaration have the 'readwrite' attribute. This is a common case, and we can issue a more lucid diagnostic. Fixes <rdar://problem/7629420>. llvm-svn: 117045
-
Ted Kremenek authored
llvm-svn: 117044
-
Douglas Gregor authored
char32_t character types and enable built-in overloaded operator candidates for these types. Fixes PR8432. llvm-svn: 117038
-
Douglas Gregor authored
themselves have no template parameters. This is actually a restriction due to the grammar of template template parameters, but we choose to diagnose it in Sema to provide better recovery. llvm-svn: 117032
-
Douglas Gregor authored
redeclarations of main appropriately rather than allowing it to be overloaded. Also, disallowing declaring main as a template. Fixes GCC DejaGNU g++.old-deja/g++.other/main1.C. llvm-svn: 117029
-
Douglas Gregor authored
variable, handle conditional operators involving a throw-expression. Fixes GCC DejaGNU's g++.dg/template/cond4.C. llvm-svn: 117027
-
Ted Kremenek authored
or a 'short'. This fixes that and allows the hints to suggest 'h' modifiers for small ints. Patch by Justin Bogner! llvm-svn: 116996
-
Craig Silverstein authored
function decls. Reviewed by rjmccall and nlewycky. llvm-svn: 116979
-
- Oct 20, 2010
-
-
John McCall authored
say 'implicitly' when it was implicit. Resolves PR 7930 and my peace of mind. llvm-svn: 116916
-
John McCall authored
on a friend declaration, skip template-ids which do not depend on the current parameter list. llvm-svn: 116911
-
Douglas Gregor authored
kinds of lookup into Objective-C classes were tangled together, a situation that was compounded by automatically synthesized ivars. llvm-svn: 116907
-
Douglas Gregor authored
don't repeatedly loop through identifiers, correcting the same typo'd identifier over and over again. We still bail out after 20 typo corrections, but this should help improve performance in the common case where we're typo-correcting because the user forgot to include a header. llvm-svn: 116901
-
Douglas Gregor authored
Eliminate another ordering dependency in typo correction. Re-enable typo.m, which seems to be working properly. llvm-svn: 116894
-
Douglas Gregor authored
typo correction, to allow early exits. llvm-svn: 116868
-
- Oct 19, 2010
-
-
Douglas Gregor authored
computation to compute the lower bound of the edit distance, so that we can avoid computing the edit distance for names that will clearly be rejected later. Since edit distance is such an expensive algorithm (M x N), this leads to a 7.5x speedup when correcting NSstring -> NSString in the presence of a Cocoa PCH. llvm-svn: 116849
-
Fariborz Jahanian authored
property synthesis mode, when dealing with legacy code. Fixes //rdar: //8565343. llvm-svn: 116846
-
Fariborz Jahanian authored
PR6056, //rdar: //8564463 llvm-svn: 116819
-
Douglas Gregor authored
within a default argument), recurse into default arguments. Fixes PR8401, a regression I introduced in r113700 while refactoring our handling of "used" declarations in default arguments. llvm-svn: 116817
-
John McCall authored
we may need to complete the type before looking into it. llvm-svn: 116795
-
John McCall authored
llvm-svn: 116789
-
John McCall authored
llvm-svn: 116787
-
John McCall authored
construct an unsupported friend when there's a friend with a templated scope specifier. Fixes a consistency crash, rdar://problem/8540527 llvm-svn: 116786
-
Douglas Gregor authored
C++/C99/Objective-C, so that we properly include types. This fix affects global caching of code-completion results; without caching, the behavior was already correct. llvm-svn: 116757
-
- Oct 18, 2010
-
-
Douglas Gregor authored
declaring methods and when sending messages to them, by bringing all of the selector into TypedCheck chunks in the completion result. This way, we can improve the sorting of these results to account for the full selector name rather than just the first chunk. llvm-svn: 116746
-
Douglas Gregor authored
(after - or +), always traverse superclasses and all categories. The programmer may want to complete a method from *anywhere*. llvm-svn: 116723
-