Several BugFixes and updates:
[libfirm] / ir / be / TEMPLATE / TEMPLATE_emitter.c
index 28c5c4b..45ab8f6 100644 (file)
@@ -1,7 +1,29 @@
-/* TEMPLATE emitter */
-/* $Id$ */
+/*
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
+ *
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
+ */
+
+/**
+ * @file
+ * @brief   emit assembler for a backend graph
+ * @version $Id$
+ */
 #ifdef HAVE_CONFIG_H
-#include <config.h>
+#include "config.h"
 #endif
 
 #include <limits.h>
@@ -176,9 +198,6 @@ typedef void (*emit_func_ptr) (TEMPLATE_emit_env_t *, const ir_node *);
  */
 void TEMPLATE_emit_node(TEMPLATE_emit_env_t *env, const ir_node *node) {
        ir_op               *op       = get_irn_op(node);
-       DEBUG_ONLY(firm_dbg_module_t *mod = env->mod;)
-
-       DBG((mod, LEVEL_1, "emitting code for %+F\n", node));
 
        if (op->ops.generic) {
                emit_func_ptr func = (emit_func_ptr) op->ops.generic;
@@ -259,7 +278,6 @@ void TEMPLATE_gen_routine(const TEMPLATE_code_gen_t *cg, ir_graph *irg) {
        env.emit     = &env.isa->emit;
        env.arch_env = cg->arch_env;
        env.cg       = cg;
-       FIRM_DBG_REGISTER(env.mod, "firm.be.TEMPLATE.emit");
 
        /* register all emitter functions */
        TEMPLATE_register_emitters();