replaced LC_OPT_ENT_NULL by LC_OPT_LAST
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 18 Jun 2007 22:21:08 +0000 (22:21 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 18 Jun 2007 22:21:08 +0000 (22:21 +0000)
[r14636]

ir/be/becopyilp.c
ir/be/bejavacoal.c
ir/be/bespillremat.c

index 07d95e0..1199df0 100644 (file)
@@ -64,7 +64,7 @@ static const lc_opt_table_entry_t options[] = {
        LC_OPT_ENT_BOOL     ("net",   "solve over the net", &solve_net),
        LC_OPT_ENT_BOOL     ("log",   "show ilp solving log",              &solve_log),
        LC_OPT_ENT_ENUM_MASK("dump",  "dump flags",             &dump_var),
-       LC_OPT_ENT_NULL
+       LC_OPT_LAST
 };
 
 void be_init_copyilp(void)
index 632e1ee..2633d37 100644 (file)
@@ -63,7 +63,7 @@ static const lc_opt_table_entry_t options[] = {
        LC_OPT_ENT_STR      ("jvm",  "absolute path to jvm dll",                    jvm_lib, sizeof(jvm_lib)),
        LC_OPT_ENT_STR      ("jar",  "jar file of the coalescer",                   jar_file, sizeof(jar_file)),
        LC_OPT_ENT_STR      ("cls",  "name of the class providing the factory",     cls_name, sizeof(cls_name)),
-       LC_OPT_ENT_NULL
+       LC_OPT_LAST
 };
 
 void be_init_javacoal(void)
index c8741c6..9a12896 100644 (file)
@@ -169,7 +169,7 @@ static const lc_opt_table_entry_t options[] = {
        LC_OPT_ENT_DBL      ("cost_memoperand",  "cost of a memory operand",                        &opt_cost_memoperand),
        LC_OPT_ENT_DBL      ("cost_spill",  "cost of a spill instruction",                          &opt_cost_spill),
        LC_OPT_ENT_DBL      ("cost_remat",  "cost of a rematerialization",                          &opt_cost_remat),
-       LC_OPT_ENT_NULL
+       LC_OPT_LAST
 };
 
 //#define EXECFREQ_LOOPDEPH   /* compute execution frequency from loop depth only */