* removed U8_AVAILABLE, since we know what alpha can do
authortwisti <none@none>
Wed, 8 Jun 2005 19:29:36 +0000 (19:29 +0000)
committertwisti <none@none>
Wed, 8 Jun 2005 19:29:36 +0000 (19:29 +0000)
src/vm/jit/alpha/types.h

index 8576ea968187d3adbb73db21d5fea929fea4eb32..83188ff04d640081122f4752021c52df47e36563 100644 (file)
@@ -29,7 +29,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: types.h 1735 2004-12-07 14:33:27Z twisti $
+   $Id: types.h 2608 2005-06-08 19:29:36Z twisti $
 
 */
 
@@ -37,9 +37,6 @@
 #ifndef _TYPES_H
 #define _TYPES_H
 
-#include "vm/jit/alpha/arch.h"
-
-
 /* Define the sizes of the integer types used internally by cacao. */
 
 typedef signed char             s1;
@@ -51,13 +48,8 @@ typedef unsigned short int      u2;
 typedef signed int              s4;
 typedef unsigned int            u4;
 
-#if U8_AVAILABLE
 typedef signed long int         s8;
-typedef unsigned long int       u8; 
-#else
-typedef struct {u4 low, high;}  u8;
-#define s8 u8
-#endif
+typedef unsigned long int       u8;
 
 
 /* Define the size of a function pointer used in function pointer casts. */