* src/vm/global.h (PRIMITIVETYPE_*): Removed.
[cacao.git] / src / vmcore / linker.h
index 1035798f6107248036ddbb0d5a77d440b49624bc..befb575c23a5d240b3e5202191f6c8bca6a44166 100644 (file)
@@ -22,7 +22,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   $Id: linker.h 8056 2007-06-10 14:49:57Z michi $
+   $Id: linker.h 8060 2007-06-10 20:00:40Z twisti $
 */
 
 
@@ -134,28 +134,8 @@ struct arraydescriptor {
 };
 
 
-/* primitivetypeinfo **********************************************************/
-
-struct primitivetypeinfo {
-       char      *cname;                    /* char name of primitive class      */
-       utf       *name;                     /* name of primitive class           */
-       classinfo *class_wrap;               /* class for wrapping primitive type */
-       classinfo *class_primitive;          /* primitive class                   */
-       char      *wrapname;                 /* name of class for wrapping        */
-       char       typesig;                  /* one character type signature      */
-       char      *arrayname;                /* name of primitive array class     */
-       classinfo *arrayclass;               /* primitive array class             */
-       vftbl_t   *arrayvftbl;               /* vftbl of primitive array class    */
-};
-
-
 /* global variables ***********************************************************/
 
-/* This array can be indexed by the PRIMITIVETYPE_ and ARRAYTYPE_ constants   */
-/* (except ARRAYTYPE_OBJECT).                                                 */
-
-extern primitivetypeinfo primitivetype_table[PRIMITIVETYPE_COUNT];
-
 /* This lock must be taken while renumbering classes or while atomically      */
 /* accessing classes.                                                         */