ia32: Simplify ia32_register_saved_by().
[libfirm] / ir / be / beirgmod.h
index 0777ec9..5447a38 100644 (file)
@@ -22,7 +22,6 @@
  * @brief       Backend IRG modification routines.
  * @author      Sebastian Hack, Daniel Grund, Matthias Braun, Christian Wuerdig
  * @date        04.05.2005
- * @version     $Id$
  *
  * This file contains the following IRG modifications for be routines:
  * - insertion of Perm nodes
 #ifndef FIRM_BE_BEIRGMOD_H
 #define FIRM_BE_BEIRGMOD_H
 
+#include "be_types.h"
 #include "firm_types.h"
-#include "beirg.h"
 
 /**
  * Insert a Perm which permutes all (non-ignore) live values of a given register class
- * after a certain instruction.
+ * before a certain instruction.
  * @param lv        Liveness Information.
- * @param irn       The node to insert the Perm after.
+ * @param irn       The node to insert the Perm before.
  * @return          The Perm or NULL if nothing was live before @p irn.
  */
-ir_node *insert_Perm_after(ir_graph *irg, const arch_register_class_t *cls,
+ir_node *insert_Perm_before(ir_graph *irg, const arch_register_class_t *cls,
                                                   ir_node *irn);
 
 /**