sparc: implement float->unsigned conversions
[libfirm] / ir / be / betranshlp.h
index d91bae7..4e47846 100644 (file)
@@ -22,7 +22,6 @@
  * @brief       be transform helper extracted from the ia32 backend.
  * @author      Matthias Braun, Michael Beck
  * @date        14.06.2007
- * @version     $Id$
  */
 #ifndef FIRM_BE_BETRANSHLP_H
 #define FIRM_BE_BETRANSHLP_H
@@ -53,12 +52,6 @@ ir_node *be_transform_node(ir_node *node);
  */
 void be_duplicate_deps(ir_node *old_node, ir_node *new_node);
 
-/**
- * Depend on the frame if the node is in the start block.  This prevents
- * nodes being scheduled before they can be spilled.
- */
-void be_dep_on_frame(ir_node *node);
-
 /**
  * Duplicate a node during transformation.
  */
@@ -91,12 +84,4 @@ void be_enqueue_preds(ir_node *node);
  */
 void be_transform_graph(ir_graph *irg, arch_pretrans_nodes *func);
 
-/**
- * If Mux(sel, t, f) represents an Abs return 1, if it represents -Abs return
- * -1, otherwise 0
- */
-int be_mux_is_abs(ir_node *sel, ir_node *mux_true, ir_node *mux_false);
-
-ir_node *be_get_abs_op(ir_node *sel);
-
 #endif