typo fixed
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 17 Nov 2005 17:45:22 +0000 (17:45 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 17 Nov 2005 17:45:22 +0000 (17:45 +0000)
[r6932]

ir/ir/irmode_t.h
ir/opt/tropt.h

index 2883e15..7cde724 100644 (file)
@@ -101,7 +101,7 @@ _set_mode_link(ir_mode *mode, void *l) { mode->link = l; }
 
 /* Functions to check, whether a modecode is signed, float, int, num, data,
    datab or dataM. For more exact definitions read the corresponding pages
-   in the firm documentation or the followingenumeration
+   in the firm documentation or the following enumeration
 
    The set of "float" is defined as:
    ---------------------------------
index adca6bd..39e3f38 100644 (file)
@@ -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.);