decl.c (create_primitive_vtable): Don't call make_decl_rtl.

2001-06-05  Jeff Sturm  <jsturm@one-point.com>

	* decl.c (create_primitive_vtable): Don't call make_decl_rtl.

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

From-SVN: r43144
This commit is contained in:
Jeff Sturm 2001-06-10 18:24:53 +00:00 committed by Alexandre Petit-Bianco
parent 226f8242c0
commit 21a6bb3c45
2 changed files with 4 additions and 1 deletions

View 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

View 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;
}