add option for the memory disambiguator
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 15 Jan 2007 09:51:55 +0000 (09:51 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 15 Jan 2007 09:51:55 +0000 (09:51 +0000)
[r8525]

ir/ir/irgraph.c
ir/ir/irgraph_t.h

index 55ba526..32aef35 100644 (file)
@@ -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;
index 4894a61..14af2ff 100644 (file)
@@ -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 -- */