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