This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[gcjx] Patch: FYI: add aot instantiations
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 29 Jan 2005 20:12:55 -0700
- Subject: [gcjx] Patch: FYI: add aot instantiations
- Reply-to: tromey at redhat dot com
I'm checking this in on the gcjx branch.
This adds a couple of needed template method instantiations.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* aot/aotfactory.cc: Added instantiations.
Index: aot/aotfactory.cc
===================================================================
RCS file: /cvs/gcc/gcc/gcjx/aot/Attic/aotfactory.cc,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 aotfactory.cc
--- aot/aotfactory.cc 30 Jan 2005 02:27:59 -0000 1.1.2.1
+++ aot/aotfactory.cc 30 Jan 2005 03:13:22 -0000
@@ -50,3 +50,10 @@
mangle_map[val] = mg.get ();
return mg.get ();
}
+
+
+
+// Instantiations.
+
+template std::string aot_class_factory::get_mangled_form (model_field *);
+template std::string aot_class_factory::get_mangled_form (model_method *);