* src/vm/jit/mips/codegen.c (md.h): Removed.
authortwisti <none@none>
Fri, 20 Oct 2006 18:35:32 +0000 (18:35 +0000)
committertwisti <none@none>
Fri, 20 Oct 2006 18:35:32 +0000 (18:35 +0000)
* src/vm/jit/mips/md.h: Removed.
* src/vm/jit/mips/Makefile.am (libarch_la_SOURCES): Removed md.h.

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

index ab493262b2359bab5a4a0ca9fc9c81c8c748cb80..e227e48e829a378675be2394a42efadba3f0a5c3 100644 (file)
@@ -28,7 +28,7 @@
 ##
 ## Changes:
 ##
-## $Id: Makefile.am 4786 2006-04-18 20:10:23Z twisti $
+## $Id: Makefile.am 5815 2006-10-20 18:35:32Z twisti $
 
 ## Process this file with automake to produce Makefile.in
 
@@ -43,9 +43,11 @@ AM_CCASFLAGS = $(AM_CPPFLAGS)
 
 LIBS =
 
-BUILT_SOURCES = offsets.h
+BUILT_SOURCES = \
+       offsets.h
 
-CLEANFILES = offsets.h
+CLEANFILES = \
+       offsets.h
 
 noinst_HEADERS = \
        arch.h \
@@ -53,7 +55,8 @@ noinst_HEADERS = \
        \
        md-asm.h
 
-noinst_LTLIBRARIES = libarch.la
+noinst_LTLIBRARIES = \
+       libarch.la
 
 if ENABLE_DISASSEMBLER
 DISASS_SOURCES = \
@@ -70,8 +73,7 @@ libarch_la_SOURCES = \
        \
        md-abi.c \
        md-abi.h \
-       md.c \
-       md.h
+       md.c
 
 libarch_la_LIBADD = \
        $(OS_DIR)/libmd.la
index 8970dd726a2209a4c4e7d1800b611c5f20d69ff6..fc7682c53b52058adcb18a4cab709a69f8efc61a 100644 (file)
@@ -35,7 +35,7 @@
    This module generates MIPS machine code for a sequence of
    intermediate code commands (ICMDs).
 
-   $Id: codegen.c 5785 2006-10-15 22:25:54Z edwin $
+   $Id: codegen.c 5815 2006-10-20 18:35:32Z twisti $
 
 */
 
@@ -47,7 +47,6 @@
 
 #include "vm/types.h"
 
-#include "md.h"
 #include "md-abi.h"
 
 #include "vm/jit/mips/arch.h"
diff --git a/src/vm/jit/mips/md.h b/src/vm/jit/mips/md.h
deleted file mode 100644 (file)
index 2830612..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/* src/vm/jit/mips/md.h - machine dependent MIPS 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:
- */