mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:40:48 +08:00
re PR c++/21614 (wrong code when calling member function of undefined class)
PR c++/21614 * typeck.c (get_member_function_from_ptrfunc): Do not attempt conversions to base classes of incomplete types. PR c++/21614 * g++.dg/expr/ptrmem6.C: New test. * g++.dg/expr/ptrmem6a.C: Likewise. From-SVN: r100291
This commit is contained in:
parent
ed3d0b1412
commit
81ae598bbd
@ -1,3 +1,9 @@
|
||||
2005-05-27 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/21614
|
||||
* typeck.c (get_member_function_from_ptrfunc): Do not attempt
|
||||
conversions to base classes of incomplete types.
|
||||
|
||||
2005-05-27 Ian Lance Taylor <ian@airs.com>
|
||||
|
||||
* semantics.c (add_stmt): Add C++ frontend specific version.
|
||||
|
@ -2346,14 +2346,23 @@ get_member_function_from_ptrfunc (tree *instance_ptrptr, tree function)
|
||||
gcc_unreachable ();
|
||||
}
|
||||
|
||||
/* Convert down to the right base before using the instance. First
|
||||
use the type... */
|
||||
/* Convert down to the right base before using the instance. A
|
||||
special case is that in a pointer to member of class C, C may
|
||||
be incomplete. In that case, the function will of course be
|
||||
a member of C, and no conversion is required. In fact,
|
||||
lookup_base will fail in that case, because incomplete
|
||||
classes do not have BINFOs. */
|
||||
basetype = TYPE_METHOD_BASETYPE (TREE_TYPE (fntype));
|
||||
basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
|
||||
basetype, ba_check, NULL);
|
||||
instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype, 1);
|
||||
if (instance_ptr == error_mark_node)
|
||||
return error_mark_node;
|
||||
if (!same_type_ignoring_top_level_qualifiers_p
|
||||
(basetype, TREE_TYPE (TREE_TYPE (instance_ptr))))
|
||||
{
|
||||
basetype = lookup_base (TREE_TYPE (TREE_TYPE (instance_ptr)),
|
||||
basetype, ba_check, NULL);
|
||||
instance_ptr = build_base_path (PLUS_EXPR, instance_ptr, basetype,
|
||||
1);
|
||||
if (instance_ptr == error_mark_node)
|
||||
return error_mark_node;
|
||||
}
|
||||
/* ...and then the delta in the PMF. */
|
||||
instance_ptr = build2 (PLUS_EXPR, TREE_TYPE (instance_ptr),
|
||||
instance_ptr, delta);
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-05-27 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
PR c++/21614
|
||||
* g++.dg/expr/ptrmem6.C: New test.
|
||||
* g++.dg/expr/ptrmem6a.C: Likewise.
|
||||
|
||||
2005-05-27 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
PR tree-optimization/21658
|
||||
|
12
gcc/testsuite/g++.dg/expr/ptrmem6.C
Normal file
12
gcc/testsuite/g++.dg/expr/ptrmem6.C
Normal file
@ -0,0 +1,12 @@
|
||||
// PR C++/21614
|
||||
// { dg-additional-sources "ptrmem6a.C" }
|
||||
// { dg-do run }
|
||||
|
||||
extern struct Z *p;
|
||||
extern int (Z::*m) ();
|
||||
|
||||
int main () {
|
||||
if ((p->*m)() == 7)
|
||||
return 0;
|
||||
return 1;
|
||||
}
|
9
gcc/testsuite/g++.dg/expr/ptrmem6a.C
Normal file
9
gcc/testsuite/g++.dg/expr/ptrmem6a.C
Normal file
@ -0,0 +1,9 @@
|
||||
struct Z {
|
||||
int f();
|
||||
};
|
||||
|
||||
int Z::f() { return 7; }
|
||||
|
||||
struct Z z;
|
||||
int (Z::*m)() = &Z::f;
|
||||
struct Z*p = &z;
|
Loading…
x
Reference in New Issue
Block a user