* Changed types.h include to vm/types.h.
authortwisti <none@none>
Mon, 19 Sep 2005 13:58:44 +0000 (13:58 +0000)
committertwisti <none@none>
Mon, 19 Sep 2005 13:58:44 +0000 (13:58 +0000)
src/vm/jit/disass.h
src/vm/jit/inline/sets.c
src/vm/jit/parse.c
src/vm/jit/verify/typecheck.c

index 2be30633c5c77e42639e13aad70db7358baeaedf..39abdeba1b2db3e7b63baabb3e2400a8f37c3250 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: disass.h 3177 2005-09-14 18:03:11Z twisti $
+   $Id: disass.h 3225 2005-09-19 13:58:44Z twisti $
 
 */
 
@@ -36,7 +36,7 @@
 #ifndef _DISASS_H
 #define _DISASS_H
 
-#include "types.h"
+#include "vm/types.h"
 
 
 extern char *regs[];
index 7ece8d1119e5a8d6bd12bd5441b1d58ae632cfb2..6756aba2d6c326d79f7f794ee16573ffd624ee3d 100644 (file)
 
    Authors: Carolyn Oates
 
-   $Id: sets.c 2181 2005-04-01 16:53:33Z edwin $
+   $Id: sets.c 3225 2005-09-19 13:58:44Z twisti $
 
 */
 
 
 #include <stdio.h>
 
-#include "types.h"
+#include "vm/types.h"
+
 #include "mm/memory.h"
 #include "vm/global.h"
 #include "vm/linker.h"
index 8613eef35f04083b0f774d69872d608410b41714..1d9a11f30cf00dae416009ae5b7d8eef5ff09acc 100644 (file)
@@ -31,7 +31,7 @@
             Joseph Wenninger
             Christian Thalinger
 
-   $Id: parse.c 3129 2005-08-17 23:43:38Z michi $
+   $Id: parse.c 3225 2005-09-19 13:58:44Z twisti $
 
 */
 
@@ -40,7 +40,9 @@
 #include <string.h>
 
 #include "config.h"
-#include "types.h"
+
+#include "vm/types.h"
+
 #include "mm/memory.h"
 #include "native/native.h"
 #include "toolbox/logging.h"
index 57f80b70347e7b80f0cb7e4864c490026730d505..0d3d2057a559c9f63cd360468281c348b1881f5d 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes: Christian Thalinger
 
-   $Id: typecheck.c 3059 2005-07-19 04:04:17Z michi $
+   $Id: typecheck.c 3225 2005-09-19 13:58:44Z twisti $
 
 */
 
 #include <assert.h>
 #include <string.h>
 
+#include "vm/types.h"
+
 #include "vm/global.h" /* must be here because of CACAO_TYPECHECK */
 
 #ifdef CACAO_TYPECHECK
 
-#include "types.h"
 #include "mm/memory.h"
 #include "toolbox/logging.h"
 #include "native/native.h"