typo fixed
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 15 Jan 2007 10:16:26 +0000 (10:16 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Mon, 15 Jan 2007 10:16:26 +0000 (10:16 +0000)
[r8526]

ir/ana/irmemory.c
ir/ir/irgraph.c
ir/ir/irgraph_t.h

index 94891ff..082dc66 100644 (file)
@@ -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. */
index 32aef35..30876f5 100644 (file)
@@ -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;
index 14af2ff..f86e4b5 100644 (file)
@@ -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 -- */