X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbespill.c;h=cf2985d062f8bb8ed0cb7dcb9fca146536958b6f;hb=c300b600c677fb76a63a674a390e9db962e6ab38;hp=4eecd8eb61bad9fa5e8b8ff3c00c04e993e9eed7;hpb=e44426021b5f23c05bcae04ee99d1e7afdd71b82;p=libfirm diff --git a/ir/be/bespill.c b/ir/be/bespill.c index 4eecd8eb6..cf2985d06 100644 --- a/ir/be/bespill.c +++ b/ir/be/bespill.c @@ -68,7 +68,7 @@ static void prepare_constr_insn(be_pre_spill_env_t *env, ir_node *node) int i, i2; /* Insert a copy for constraint inputs attached to a value which can't - * fullfil the constraint + * fulfill the constraint * (typical example: stack pointer as input to copyb) * TODO: This really just checks precolored registers at the moment and * ignores the general case of not matching in/out constraints @@ -281,14 +281,14 @@ void be_do_spill(ir_graph *irg, const arch_register_class_t *cls) selected_spiller->spill(irg, cls); } -BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spilloptions); +BE_REGISTER_MODULE_CONSTRUCTOR(be_init_spilloptions) void be_init_spilloptions(void) { lc_opt_entry_t *be_grp = lc_opt_get_grp(firm_opt_get_root(), "be"); lc_opt_entry_t *spill_grp = lc_opt_get_grp(be_grp, "spill"); lc_opt_add_table(spill_grp, be_spill_options); - be_add_module_list_opt(spill_grp, "spiller", "spill algorithm", + be_add_module_list_opt(be_grp, "spiller", "spill algorithm", &spillers, (void**) &selected_spiller); FIRM_DBG_REGISTER(dbg, "firm.be.spillprepare");