From: Michael Beck Date: Mon, 15 Jan 2007 10:16:26 +0000 (+0000) Subject: typo fixed X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=263f27959bcf3612c59dd6d1214e30ac1d0472e3;p=libfirm typo fixed [r8526] --- diff --git a/ir/ana/irmemory.c b/ir/ana/irmemory.c index 94891fffb..082dc6685 100644 --- a/ir/ana/irmemory.c +++ b/ir/ana/irmemory.c @@ -34,7 +34,7 @@ static unsigned global_mem_disamgig_opt = aa_opt_no_opt; /* Get the memory disambiguator options for a graph. */ unsigned get_irg_memory_disambiguator_options(ir_graph *irg) { - unsigned opt = irg->mem_disamgig_opt; + unsigned opt = irg->mem_disambig_opt; if (opt & aa_opt_inherited) return global_mem_disamgig_opt; return opt; @@ -42,7 +42,7 @@ unsigned get_irg_memory_disambiguator_options(ir_graph *irg) { /* Set the memory disambiguator options for a graph. */ void set_irg_memory_disambiguator_options(ir_graph *irg, unsigned options) { - irg->mem_disamgig_opt = options & ~aa_opt_inherited; + irg->mem_disambig_opt = options & ~aa_opt_inherited; } /* set_irg_memory_disambiguator_options */ /* Set the global disambiguator options for all graphs not having local options. */ diff --git a/ir/ir/irgraph.c b/ir/ir/irgraph.c index 32aef3550..30876f5c5 100644 --- a/ir/ir/irgraph.c +++ b/ir/ir/irgraph.c @@ -206,7 +206,7 @@ new_r_ir_graph (ir_entity *ent, int n_loc) res->execfreq_state = exec_freq_none; res->fp_model = fp_model_precise; res->adr_taken_state = ir_address_taken_not_computed; - res->mem_disamgig_opt = aa_opt_inherited; + res->mem_disambig_opt = aa_opt_inherited; /*-- Type information for the procedure of the graph --*/ res->ent = ent; diff --git a/ir/ir/irgraph_t.h b/ir/ir/irgraph_t.h index 14af2ff6c..f86e4b5cf 100644 --- a/ir/ir/irgraph_t.h +++ b/ir/ir/irgraph_t.h @@ -112,7 +112,7 @@ struct ir_graph { irg_extblk_info_state extblk_state; /**< State of extended basic block info. */ exec_freq_state execfreq_state; /**< Execution frequency state. */ ir_address_taken_computed_state adr_taken_state; /**< Address taken state. */ - unsigned mem_disamgig_opt; /**< Options for the memory disambiguator. */ + unsigned mem_disambig_opt; /**< Options for the memory disambiguator. */ unsigned fp_model; /**< floating point model of the graph. */ /* -- Fields for construction -- */