[kaffe] CVS kaffe (dalibor): Fixed compiler warning on ia64-linux

Kaffe CVS cvs-commits at kaffe.org
Tue Feb 10 08:54:02 PST 2004


PatchSet 4410 
Date: 2004/02/10 16:47:19
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Fixed compiler warning on ia64-linux

2004-02-10  Dalibor Topic <robilad at kaffe.org>

        * kaffe/kaffevm/intrp/machine.c:
        Include support.h to avoid compiler warning.
        Order includes alphabetically.

        * kaffe/kaffevm/access.h:
        Include gtypes.h.

Members: 
	ChangeLog:1.1993->1.1994 
	kaffe/kaffevm/access.h:1.9->1.10 
	kaffe/kaffevm/intrp/machine.c:1.39->1.40 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.1993 kaffe/ChangeLog:1.1994
--- kaffe/ChangeLog:1.1993	Tue Feb 10 12:31:14 2004
+++ kaffe/ChangeLog	Tue Feb 10 16:47:19 2004
@@ -1,5 +1,14 @@
 2004-02-10  Dalibor Topic <robilad at kaffe.org>
 
+	* kaffe/kaffevm/intrp/machine.c:
+	Include support.h to avoid compiler warning.
+	Order includes alphabetically.
+
+	* kaffe/kaffevm/access.h:
+	Include gtypes.h.
+
+2004-02-10  Dalibor Topic <robilad at kaffe.org>
+
 	* libraries/clib/native/ObjectInputStream.c:
 	Include support.h to avoid compiler warning.
 	
Index: kaffe/kaffe/kaffevm/access.h
diff -u kaffe/kaffe/kaffevm/access.h:1.9 kaffe/kaffe/kaffevm/access.h:1.10
--- kaffe/kaffe/kaffevm/access.h:1.9	Mon Nov  3 05:29:31 2003
+++ kaffe/kaffe/kaffevm/access.h	Tue Feb 10 16:47:21 2004
@@ -5,12 +5,17 @@
  * Copyright (c) 1996, 1997
  *	Transvirtual Technologies, Inc.  All rights reserved.
  *
+ * Copyright (c) 2004
+ *	Kaffe.org contributors, see ChangeLogs for details.  All rights reserved.
+ *
  * See the file "license.terms" for information on usage and redistribution
  * of this file.
  */
 
 #ifndef __access_h
 #define __access_h
+
+#include "gtypes.h"
 
 #define	ACC_PUBLIC		0x0001
 #define	ACC_PRIVATE		0x0002
Index: kaffe/kaffe/kaffevm/intrp/machine.c
diff -u kaffe/kaffe/kaffevm/intrp/machine.c:1.39 kaffe/kaffe/kaffevm/intrp/machine.c:1.40
--- kaffe/kaffe/kaffevm/intrp/machine.c:1.39	Sun Feb  8 13:44:41 2004
+++ kaffe/kaffe/kaffevm/intrp/machine.c	Tue Feb 10 16:47:22 2004
@@ -21,28 +21,30 @@
 #include "config-math.h"
 #include "config-mem.h"
 #include "config-setjmp.h"
-#include "classMethod.h"
-#include "gtypes.h"
-#include "bytecode.h"
-#include "slots.h"
-#include "icode.h"
+
 #include "access.h"
-#include "object.h"
-#include "constants.h"
-#include "gc.h"
-#include "machine.h"
-#include "lookup.h"
+#include "baseClasses.h"
+#include "bytecode.h"
+#include "checks.h"
 #include "code-analyse.h"
-#include "soft.h"
+#include "constants.h"
+#include "classMethod.h"
+#include "errors.h"
 #include "exception.h"
 #include "external.h"
-#include "baseClasses.h"
-#include "thread.h"
+#include "gc.h"
+#include "gtypes.h"
+#include "icode.h"
 #include "jthread.h"
 #include "locks.h"
-#include "checks.h"
-#include "errors.h"
+#include "lookup.h"
+#include "machine.h"
 #include "md.h"
+#include "object.h"
+#include "slots.h"
+#include "soft.h"
+#include "support.h"
+#include "thread.h"
 
 /*
  * Define information about this engine.




More information about the kaffe mailing list