typo fixed
[libfirm] / ir / opt / tropt.h
index e65cbc3..39e3f38 100644 (file)
@@ -1,6 +1,5 @@
 /**
- *
- * @file irsimpeltype.h
+ * @file tropt.h
  *
  * Project:     libFIRM
  * File name:   ir/opt/tropt.h
@@ -59,7 +58,7 @@ void normalize_irp_class_casts(gen_pointer_type_to_func gppt_fct);
 /**  Insert Casts so that class type casts conform exactly with the type hierarchy
  *   in given graph.
  *
- *   For more details see @normalize_irp_class_casts().
+ *   For more details see normalize_irp_class_casts().
  *
  *  This transformation requires that type information is computed. @see irtypeinfo.h.
  */
@@ -74,7 +73,7 @@ void normalize_irg_class_casts(ir_graph *irg, gen_pointer_type_to_func gppt_fct)
  *  Performs the following transformations:
  *    C c = (C)(B)(A)(B)new C()  --> C c = (C)(B)newC() --> C c = new C()
  *    (Optimizing downcasts as A a = (A)(B)(new A()) --> A a = new A() can
- *     be suppressed by setting flag opt_suppress_downcast_optimization.
+ *     be suppressed by setting the flag opt_suppress_downcast_optimization.
  *     Downcasting A to B might cause an exception.  It is not clear
  *     whether this is modeled by the Firm Cast node, as it has no exception
  *     outputs.);