Keep flag added
[libfirm] / ir / be / belistsched.h
index 6e518ce..49658c1 100644 (file)
@@ -58,7 +58,7 @@ struct _list_sched_selector_t {
        ir_node *(*select)(void *block_env, pset *ready_set);
 
        /**
-        * This function descides, if a node should appear in a schedule.
+        * This function decides, if a node should appear in a schedule.
         * @param block_env The block environment.
         * @param irn       The node.
         * @return 1, if the node should be scheduled, 0 if not.
@@ -80,11 +80,6 @@ struct _list_sched_selector_t {
 
 };
 
-/**
- * A default implementation of to_appear_in_schedule,
- * as required in list_sched_selector_t.
- */
-extern be_default_to_appear_in_schedule(void *env, const ir_node *irn);
 
 /**
  * A trivial selector, that just selects the first ready node.