OSDN Git Service

2001-06-05 Jeff Sturm <jsturm@one-point.com>
authorapbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 10 Jun 2001 18:24:53 +0000 (18:24 +0000)
committerapbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 10 Jun 2001 18:24:53 +0000 (18:24 +0000)
* decl.c (create_primitive_vtable): Don't call make_decl_rtl.

(http://gcc.gnu.org/ml/gcc-patches/2001-06/msg00265.html )

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43144 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/java/ChangeLog
gcc/java/decl.c

index 39bd011..8093e65 100644 (file)
@@ -1,3 +1,7 @@
+2001-06-05  Jeff Sturm  <jsturm@one-point.com>
+
+       * decl.c (create_primitive_vtable): Don't call make_decl_rtl.
+
 2001-06-04  Alexandre Petit-Bianco  <apbianco@redhat.com>
 
        * expr.c (force_evaluation_order): Match wrapped ctor calls, locate
index 02ac9d8..1e8c934 100644 (file)
@@ -396,7 +396,6 @@ create_primitive_vtable (name)
   sprintf (buf, "_Jv_%sVTable", name);
   r = build_decl (VAR_DECL, get_identifier (buf), ptr_type_node);
   DECL_EXTERNAL (r) = 1;
-  make_decl_rtl (r, buf);
   return r;
 }