From: Michael Beck Date: Mon, 15 Jan 2007 09:51:55 +0000 (+0000) Subject: add option for the memory disambiguator X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=cbf236bc39344a021c584d345b55743798069d22;p=libfirm add option for the memory disambiguator [r8525] --- diff --git a/ir/ir/irgraph.c b/ir/ir/irgraph.c index 55ba526c2..32aef3550 100644 --- a/ir/ir/irgraph.c +++ b/ir/ir/irgraph.c @@ -206,6 +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; /*-- 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 4894a61cd..14af2ff6c 100644 --- a/ir/ir/irgraph_t.h +++ b/ir/ir/irgraph_t.h @@ -112,6 +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 fp_model; /**< floating point model of the graph. */ /* -- Fields for construction -- */