typo fixed
[libfirm] / ir / be / beschedtrivial.c
index 044fca2..8f1f4bc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
@@ -76,7 +76,7 @@ static void *trivial_init_block(void *graph_env, ir_node *block)
        return graph_env;
 }
 
-static const list_sched_selector_t trivial_selector_struct = {
+const list_sched_selector_t trivial_selector = {
        trivial_init_graph,
        trivial_init_block,
        trivial_select,
@@ -88,5 +88,3 @@ static const list_sched_selector_t trivial_selector_struct = {
        NULL,                /* finish_block */
        NULL                 /* finish_graph */
 };
-
-const list_sched_selector_t *trivial_selector = &trivial_selector_struct;