diff options
author | Tom Tromey <tromey@redhat.com> | 2003-01-23 21:19:50 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2003-01-23 21:19:50 +0000 |
commit | 1f369e606fac3810e79ef0c0d4fd353a43d0d2b4 (patch) | |
tree | 4d25331ad08a441f2ed71d7a18d95b012de7da72 /gcc/java | |
parent | c38e9817add28bde3418c28bb5aebeb9b4a8563e (diff) | |
download | gcc-1f369e606fac3810e79ef0c0d4fd353a43d0d2b4.zip gcc-1f369e606fac3810e79ef0c0d4fd353a43d0d2b4.tar.gz gcc-1f369e606fac3810e79ef0c0d4fd353a43d0d2b4.tar.bz2 |
expr.c (build_known_method_ref): Use method's context to find method table index.
* expr.c (build_known_method_ref): Use method's context to find
method table index.
From-SVN: r61670
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/java/expr.c | 13 |
2 files changed, 13 insertions, 5 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 092d5bd..3050610 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,5 +1,10 @@ 2003-01-23 Tom Tromey <tromey@redhat.com> + * expr.c (build_known_method_ref): Use method's context to find + method table index. + +2003-01-23 Tom Tromey <tromey@redhat.com> + * constants.c (set_constant_entry): Allocated cleared memory. 2003-01-22 Tom Tromey <tromey@redhat.com> diff --git a/gcc/java/expr.c b/gcc/java/expr.c index bf1f41b..5ce92e0 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -1748,13 +1748,16 @@ build_known_method_ref (tree method, tree method_type ATTRIBUTE_UNUSED, SELF_TYPE->methods[METHOD_INDEX].ncode - This is guaranteed to work (assuming SELF_TYPE has - been initialized), since if the method is not compiled yet, - its ncode points to a trampoline that forces compilation. */ + */ int method_index = 0; - tree meth; - tree ref = build_class_ref (self_type); + tree meth, ref; + + /* The method might actually be declared in some superclass, so + we have to use its class context, not the caller's notion of + where the method is. */ + self_type = DECL_CONTEXT (method); + ref = build_class_ref (self_type); ref = build1 (INDIRECT_REF, class_type_node, ref); if (ncode_ident == NULL_TREE) ncode_ident = get_identifier ("ncode"); |