- Sep 11, 2009
-
-
Daniel Dunbar authored
llvm-svn: 81472
-
- Sep 10, 2009
-
-
Fariborz Jahanian authored
llvm-svn: 81462
-
Anders Carlsson authored
Don't check use of a member function declaration used if the member function is virtual and the member reference expression doesn't explicitly qualify it. Fixes PR4878. llvm-svn: 81460
-
Douglas Gregor authored
integral constant expressions (for conversions to integer types, naturally). I don't *think* that const_casts will ever get to this point, but I also can't convince myself that they won't... so I've taken the safe route and allowed the ICE checking code to look at const_cast. llvm-svn: 81453
-
Douglas Gregor authored
all of the parent DeclContexts that aren't represented within the Scope chain. This fixes some name-lookup problems in out-of-line definitions of members of nested classes. llvm-svn: 81451
-
Daniel Dunbar authored
llvm-svn: 81430
-
Daniel Dunbar authored
llvm-svn: 81428
-
Daniel Dunbar authored
llvm-svn: 81425
-
Anders Carlsson authored
llvm-svn: 81423
-
Douglas Gregor authored
partial specialization rather than a subclass of TemplateDecl. Fixes a crash in libstdc++ 4.2's <map>. llvm-svn: 81407
-
Douglas Gregor authored
has a single conversion to pointer-to-object type, implicitly convert to that pointer-to-object type (C++ [expr.delete]p1). llvm-svn: 81401
-
Douglas Gregor authored
such initializations properly convert constructor arguments and fill in default arguments where necessary. This also makes the ownership model more clear. llvm-svn: 81394
-
- Sep 09, 2009
-
-
rdar://problem/7185647Ted Kremenek authored
Here we implement this as a precondition within GRExprEngine, even though it is related to how BasicStoreManager and RegionStoreManager model 'self' differently. Putting this as a high-level precondition is more general, which is why it isn't in RegionStore.cpp. llvm-svn: 81378
-
Mike Stump authored
llvm-svn: 81346
-
Douglas Gregor authored
declaration of that array in C++. llvm-svn: 81309
-
Douglas Gregor authored
templates, e.g., x.template get<T> We can now parse these, represent them within an UnresolvedMemberExpr expression, then instantiate that expression node in simple cases. This allows us to stumble through parsing LLVM's Casting.h. llvm-svn: 81300
-
Fariborz Jahanian authored
as __strong. llvm-svn: 81283
-
Daniel Dunbar authored
- -1 FIXME, and fixes 'clang -arch armv4t ...', for example. llvm-svn: 81276
-
- Sep 08, 2009
-
-
Fariborz Jahanian authored
in assiging to c pointer types with a GC'able attribute. llvm-svn: 81244
-
Chris Lattner authored
else it will make tests run faster and make 4888 easier to diagnose. llvm-svn: 81238
-
Anders Carlsson authored
llvm-svn: 81237
-
John McCall authored
llvm-svn: 81233
-
Daniel Dunbar authored
llvm-svn: 81225
-
Daniel Dunbar authored
- We aren't going to fix these since they haven't caused problems in practice. - Similarly, don't forward -object to Darwin ld. llvm-svn: 81224
-
Anders Carlsson authored
Handle variadic constructors better. Share code between BuildCXXConstructExpr and BuildCXXTemporaryObjectExpr. llvm-svn: 81181
-
Chris Lattner authored
llvm-svn: 81176
-
- Sep 07, 2009
-
-
Anders Carlsson authored
llvm-svn: 81151
-
Mike Stump authored
llvm-svn: 81143
-
- Sep 06, 2009
-
-
Fariborz Jahanian authored
situations. llvm-svn: 81129
-
Anders Carlsson authored
for (unsigned i = numargs; i < NumArgs; ++i) Args[0] = 0; ;) llvm-svn: 81123
-
Daniel Dunbar authored
destroying the CXXConstructExpr.", this is causing test failures across the board. llvm-svn: 81100
-
Daniel Dunbar authored
llvm-svn: 81099
-
Anders Carlsson authored
Initialize default CXXConstructExpr arguments to 0. Fixes a crash when destroying the CXXConstructExpr. llvm-svn: 81096
-
- Sep 05, 2009
-
-
Anders Carlsson authored
llvm-svn: 81063
-
Anders Carlsson authored
llvm-svn: 81062
-
Douglas Gregor authored
templates. We now distinguish between an explicit instantiation declaration and an explicit instantiation definition, and know not to instantiate explicit instantiation declarations. Unfortunately, there is some remaining confusion w.r.t. instantiation of out-of-line member function definitions that causes trouble here. llvm-svn: 81053
-
- Sep 04, 2009
-
-
Douglas Gregor authored
Now that parsing, semantic analysis, and (I think) code generation of pseudo-destructor expressions and explicit destructor calls works, update the example-dynarray.cpp test to destroy the objects it allocates and update the test to actually compile + link. The code seems correct, but the Clang-compiled version dies with a malloc error. Time to debug! llvm-svn: 81025
-
Douglas Gregor authored
formed without a trailing '(', diagnose the error (these expressions must be immediately called), emit a fix-it hint, and fix the code. llvm-svn: 81015
-
Daniel Dunbar authored
llvm-svn: 81011
-
Douglas Gregor authored
expressions, e.g., p->~T() when p is a pointer to a scalar type. We don't currently diagnose errors when pseudo-destructor expressions are used in any way other than by forming a call. llvm-svn: 81009
-