- Aug 08, 2009
-
-
Anders Carlsson authored
llvm-svn: 78478
-
Anders Carlsson authored
llvm-svn: 78474
-
Edward O'Callaghan authored
llvm-svn: 78471
-
Anders Carlsson authored
llvm-svn: 78452
-
Douglas Gregor authored
to allow sharing of nodes. Simplifies some aspects of template instantiation, and fixes both PR3444 and <rdar://problem/6757457>. llvm-svn: 78450
-
Anders Carlsson authored
llvm-svn: 78434
-
Anders Carlsson authored
llvm-svn: 78429
-
Anders Carlsson authored
llvm-svn: 78415
-
John McCall authored
separately. Add the framework (currently unfed) for finding friend declarations during argument-dependent lookup. llvm-svn: 78414
-
- Aug 07, 2009
-
-
Anders Carlsson authored
llvm-svn: 78395
-
Ryan Flynn authored
llvm-svn: 78385
-
Douglas Gregor authored
TransformStmt, into the tree transformer. llvm-svn: 78347
-
- Aug 06, 2009
-
-
John McCall authored
guard its report on GNUMode. llvm-svn: 78338
-
John McCall authored
Permit a class to friend its class members in C++ 98, as long as extensions are enabled (and even when they aren't, only give an extwarn about it). llvm-svn: 78332
-
Fariborz Jahanian authored
llvm-svn: 78331
-
Fariborz Jahanian authored
don't recurs and crash. llvm-svn: 78323
-
Douglas Gregor authored
we were going to enter into the scope of a class template or class template partial specialization, rebuild that type so that it can refer to members of the current instantiation, as in code like template<typename T> struct X { typedef T* pointer; pointer data(); }; template<typename T> typename X<T>::pointer X<T>::data() { ... } Without rebuilding the return type of this out-of-line definition, the canonical return type of the out-of-line definition (a TypenameType) will not match the canonical return type of the declaration (the canonical type of T*). llvm-svn: 78316
-
Douglas Gregor authored
transform, then use the result for template instantiation. The generic transformation fixes a few issues: - It copes better with template template parameters and member templates (when they're implemented). - The logic used to replace template template parameters with their arguments is now centralized in TransformDecl, so that it will apply for other declaration-instantiation steps. - The error-recovery strategy is normalized now, so that any error results in a NULL TemplateName. llvm-svn: 78292
-
Douglas Gregor authored
tree transformation. Template instantiation uses this general transformation rather than implementing its own transformation. llvm-svn: 78286
-
Douglas Gregor authored
this->Base::foo from James Porter! llvm-svn: 78278
-
Ryan Flynn authored
llvm-svn: 78276
-
John McCall authored
llvm-svn: 78274
-
- Aug 05, 2009
-
-
Eli Friedman authored
llvm-svn: 78230
-
Fariborz Jahanian authored
construction of constructor calls. llvm-svn: 78222
-
Fariborz Jahanian authored
expressions and a test case. llvm-svn: 78213
-
Douglas Gregor authored
tighten up the static type system. llvm-svn: 78164
-
Mike Stump authored
llvm-svn: 78140
-
Fariborz Jahanian authored
work in progress. llvm-svn: 78132
-
Douglas Gregor authored
general tree transformation. Also, implement template instantiation for parameter packs. In addition, introduce logic to enter the appropriate context for subexpressions that are not potentially evaluated. llvm-svn: 78114
-
- Aug 04, 2009
-
-
Mike Stump authored
llvm-svn: 78102
-
Fariborz Jahanian authored
on method type mismatches per Chris's comment. llvm-svn: 78075
-
Douglas Gregor authored
transformation template (TreeTransform) that handles the transformation and reconstruction of AST nodes. Template instantiation for types is a (relatively small) customization of the generic tree transformation. llvm-svn: 78071
-
Fariborz Jahanian authored
super class(s) and warn on any parameter type mismatch if potentially unsafe. llvm-svn: 78029
-
Ted Kremenek authored
implementation of '#pragma unused' by not constructing intermediate DeclRefExprs, but instead do the name lookup directly. The implementation is greatly simplified. Along the way, degrade '#pragma unused(undeclaredvariable)' to a warning instead of being a hard error. This implements: <rdar://problem/6761874> [sema] allow #pragma unused to reference undefined variable (with warning) llvm-svn: 78019
-
- Aug 03, 2009
-
-
John McCall authored
elsewhere. Very slightly decouples DeclSpec users from knowing the exact diagnostics to report, and makes it easier to provide different diagnostics in some places. llvm-svn: 77990
-
Fariborz Jahanian authored
llvm-svn: 77985
-
Eli Friedman authored
obviously correct. llvm-svn: 77969
-
Douglas Gregor authored
llvm-svn: 77928
-
Douglas Gregor authored
template partial specialization. Then, use those template arguments when instantiating members of that class template partial specialization. Fixes PR4607. llvm-svn: 77925
-
- Aug 02, 2009
-
-
Anders Carlsson authored
llvm-svn: 77905
-