* src/vm/jit/m68k/emit.h (emit_verbosecall_enter)
authorChristian Thalinger <twisti@complang.tuwien.ac.at>
Thu, 30 Oct 2008 10:32:06 +0000 (11:32 +0100)
committerChristian Thalinger <twisti@complang.tuwien.ac.at>
Thu, 30 Oct 2008 10:32:06 +0000 (11:32 +0100)
(emit_verbosecall_exit): Removed.

src/vm/jit/m68k/emit.h

index c0358ea8d3a661d3e33a6d65c9abd9b4acacb8ae..6980ad21fd1d2d689733e8f4c1a5397270a09838 100644 (file)
@@ -1,9 +1,7 @@
 /* src/vm/jit/m68k/emit.h
  
-   Copyright (C) 1996-2005, 2006, 2007 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
+   Copyright (C) 1996-2005, 2006, 2007, 2008
+   CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
 
    This file is part of CACAO.
 
@@ -24,8 +22,9 @@
 
 */
 
-#ifndef _EMIT_H_
-#define _EMIT_H_
+
+#ifndef _EMIT_H
+#define _EMIT_H
 
 #include "config.h"
 
 
 void emit_mov_imm_reg (codegendata *cd, s4 imm, s4 dreg);
 void emit_mov_imm_areg(codegendata *cd, s4 imm, s4 dreg);
-void emit_verbosecall_enter(jitdata* jd);
-void emit_verbosecall_exit(jitdata* jd);
 
-#endif
+#endif /* _EMIT_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:
+ * vim:noexpandtab:sw=4:ts=4:
+ */