X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fopt%2Ftropt.h;h=39e3f38d7e6412fe0905a426bd00b5ead77c998e;hb=cf9f9f4761861a85e7a0cc456f7915ab8c33a63d;hp=e65cbc363f6b800acdc8658ce9b7ff85f4cfda0d;hpb=9625e38fc84983dde86531443d2a54d719925e6f;p=libfirm diff --git a/ir/opt/tropt.h b/ir/opt/tropt.h index e65cbc363..39e3f38d7 100644 --- a/ir/opt/tropt.h +++ b/ir/opt/tropt.h @@ -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.);