diff options
author | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-21 05:44:10 +0000 |
---|---|---|
committer | mmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-21 05:44:10 +0000 |
commit | 3771c712f266eafeedb3522cab42585878bb819d (patch) | |
tree | 06bdae24ad68e9a57a101d63e814c4225877ee2b /gcc/cp/pt.c | |
parent | 57260f806bd65b98d4861b8bf99739f68295848a (diff) | |
download | gcc-3771c712f266eafeedb3522cab42585878bb819d.tar.gz |
PR c++/17530
* pt.c (tsubst): Fix parentheses to accomodate emacs.
(tsubst_baselink): If we get a single function, mark it as used.
PR c++/17530
* g++.dg/template/static7.C: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87791 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/pt.c')
-rw-r--r-- | gcc/cp/pt.c | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index d7e59039ce4..4d77a8dbd57 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -7007,11 +7007,12 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl) single bad template instantiation. */ if (complain & tf_error #ifdef USE_MAPPED_LOCATION - && last_loc != input_location) + && last_loc != input_location #else && (last_loc.line != input_line - || last_loc.file != input_filename)) + || last_loc.file != input_filename) #endif + ) { if (TREE_CODE (type) == VOID_TYPE) error ("forming reference to void"); @@ -7323,11 +7324,23 @@ tsubst_baselink (tree baselink, tree object_type, } name = DECL_NAME (get_first_fn (fns)); baselink = lookup_fnfields (qualifying_scope, name, /*protect=*/1); + + /* If lookup found a single function, mark it as used at this + point. (If it lookup found multiple functions the one selected + later by overload resolution will be marked as used at that + point.) */ + if (BASELINK_P (baselink)) + fns = BASELINK_FUNCTIONS (baselink); + if (!template_id_p && !really_overloaded_fn (fns)) + mark_used (OVL_CURRENT (fns)); + + /* Add back the template arguments, if present. */ if (BASELINK_P (baselink) && template_id_p) BASELINK_FUNCTIONS (baselink) = build_nt (TEMPLATE_ID_EXPR, BASELINK_FUNCTIONS (baselink), template_args); + if (!object_type) object_type = current_class_type; return adjust_result_of_qualified_name_lookup (baselink, |