Fixed some typos.
authorSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Wed, 25 May 2011 12:28:13 +0000 (14:28 +0200)
committerSebastian Buchwald <Sebastian.Buchwald@kit.edu>
Fri, 27 May 2011 11:33:24 +0000 (13:33 +0200)
include/libfirm/dbginfo.h
ir/ana/vrp.c
ir/opt/opt_blocks.c

index 479ae8f..19f95a7 100644 (file)
@@ -81,7 +81,7 @@ typedef enum {
        dbg_read_a_const,             /**< A Firm subgraph was replaced because of a read
                                           a constant optimization. */
        dbg_rem_poly_call,            /**< Remove polymorphic call. */
-       dbg_dead_code,                /**< Removing unreachable code, I.e. blocks that are never executed. */
+       dbg_dead_code,                /**< Removing unreachable code, i.e. blocks that are never executed. */
        dbg_opt_confirm,              /**< A Firm subgraph was replace because of a Confirmation. */
        dbg_gvn_pre,                  /**< A Firm node was replace because of the GVN-PRE algorithm. */
        dbg_combo,                    /**< A Firm node was replace because of the combo algorithm. */
index 66cefa3..b82d6e6 100644 (file)
@@ -574,7 +574,7 @@ void set_vrp_data(ir_graph *irg)
 
                if (vrp_update_node(node)) {
                        /* if something changed, add successors to worklist*/
-                       for (i = get_irn_n_outs(node) - 1; i >=0; --i) {
+                       for (i = get_irn_n_outs(node) - 1; i >= 0; --i) {
                                succ =  get_irn_out(node, i);
                                waitq_put(env->workqueue, node);
                        }
index 4ef1484..ed3b787 100644 (file)
@@ -1074,7 +1074,7 @@ static void find_liveouts(ir_node *irn, void *ctx)
 }  /* find_liveouts */
 
 /**
- * Check if the current block is the meet block of its predecessors.
+ * Check if the current block is the meet block of its predecessors.
  */
 static void check_for_cf_meet(ir_node *block, void *ctx)
 {