* src/vm/jit/x86_64/md.h: Removed.
authortwisti <none@none>
Thu, 26 Oct 2006 11:04:31 +0000 (11:04 +0000)
committertwisti <none@none>
Thu, 26 Oct 2006 11:04:31 +0000 (11:04 +0000)
* src/vm/jit/x86_64/Makefile.am (libarch_la_SOURCES): Removed md.h.
* src/vm/jit/x86_64/codegen.c (md.h): Removed.
(codegen): Warning fix.

src/vm/jit/x86_64/Makefile.am
src/vm/jit/x86_64/codegen.c
src/vm/jit/x86_64/md.h [deleted file]

index 9d1bec87f92e852600dccf6758a45313c4057f80..1bac4da274355ac9b94b133074eb8769d52648cc 100644 (file)
@@ -28,7 +28,7 @@
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 5642 2006-10-03 16:42:34Z edwin $
+## $Id: Makefile.am 5830 2006-10-26 11:04:31Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
@@ -65,8 +65,7 @@ libarch_la_SOURCES = \
        \
        md-abi.c \
        md-abi.h \
-       md.c \
-       md.h
+       md.c
 
 $(srcdir)/asmpart.S: $(top_builddir)/config.h offsets.h
 
index 8d8a96d1845d550773f96bcd0e1262071550d9d9..e51432940d3bbfcc35618eff41251c67243f7d17 100644 (file)
@@ -30,7 +30,7 @@
    Changes: Christian Ullrich
             Edwin Steiner
 
-   $Id: codegen.c 5785 2006-10-15 22:25:54Z edwin $
+   $Id: codegen.c 5830 2006-10-26 11:04:31Z twisti $
 
 */
 
@@ -42,7 +42,6 @@
 
 #include "vm/types.h"
 
-#include "md.h"
 #include "md-abi.h"
 
 #include "vm/jit/x86_64/arch.h"
@@ -117,8 +116,9 @@ bool codegen(jitdata *jd)
 
        /* prevent compiler warnings */
 
-       d = 0;
-       lm = NULL;
+       d   = 0;
+       lm  = NULL;
+       um  = NULL;
        bte = NULL;
 
        {
diff --git a/src/vm/jit/x86_64/md.h b/src/vm/jit/x86_64/md.h
deleted file mode 100644 (file)
index aeb4bb7..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/* src/vm/jit/x86_64/md.h - machine dependent x86_64 Linux functions
-
-   Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
-   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
-   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
-   J. Wenninger, Institut f. Computersprachen - TU Wien
-
-   This file is part of CACAO.
-
-   This program is free software; you can redistribute it and/or
-   modify it under the terms of the GNU General Public License as
-   published by the Free Software Foundation; either version 2, or (at
-   your option) any later version.
-
-   This program is distributed in the hope that it will be useful, but
-   WITHOUT ANY WARRANTY; without even the implied warranty of
-   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   General Public License for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA.
-
-   Contact: cacao@cacaojvm.org
-
-   Authors: Christian Thalinger
-
-   Changes:
-
-   $Id: md.h 4357 2006-01-22 23:33:38Z twisti $
-
-*/
-
-
-#ifndef _MD_H
-#define _MD_H
-
-/* function prototypes ********************************************************/
-
-#endif /* _MD_H_ */
-
-
-/*
- * These are local overrides for various environment variables in Emacs.
- * Please do not remove this and leave it at the end of the file, where
- * Emacs will automagically detect them.
- * ---------------------------------------------------------------------
- * Local variables:
- * mode: c
- * indent-tabs-mode: t
- * c-basic-offset: 4
- * tab-width: 4
- * End:
- */