aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/class.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2004-11-25 07:03:55 +0000
committerTom Tromey <tromey@gcc.gnu.org>2004-11-25 07:03:55 +0000
commit6a4877c440b1c1154578d55cd0c08dc965472b97 (patch)
tree2a694bf1e423b1faab5c614c5b2402f1207c402e /gcc/java/class.c
parent528d9c63e7e9f21c50f7dc2161e8e22a2665ba49 (diff)
downloadgcc-6a4877c440b1c1154578d55cd0c08dc965472b97.zip
gcc-6a4877c440b1c1154578d55cd0c08dc965472b97.tar.gz
gcc-6a4877c440b1c1154578d55cd0c08dc965472b97.tar.bz2
verify.c (defer_merging): Don't use C++-style comment.
* verify.c (defer_merging): Don't use C++-style comment. * verify.h (java_opcode): Added java_opcode_end. * class.c (build_class_ref): Remove C++ comment and old FIXME. From-SVN: r91277
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r--gcc/java/class.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c
index 391752a..df398c7 100644
--- a/gcc/java/class.c
+++ b/gcc/java/class.c
@@ -943,13 +943,8 @@ build_class_ref (tree type)
if (TREE_CODE (type) == POINTER_TYPE)
type = TREE_TYPE (type);
- /* FIXME: we really want an indirect reference to our
- superclass. However, libgcj assumes that a superclass
- pointer always points directly to a class. As a workaround
- we always emit this hard superclass reference. */
if (flag_indirect_dispatch
&& type != output_class
-// && type != CLASSTYPE_SUPER (output_class)
&& TREE_CODE (type) == RECORD_TYPE)
return build_indirect_class_ref (type);