Fix typos in comments.
authorChristoph Mallon <christoph.mallon@gmx.de>
Wed, 7 Nov 2012 06:57:38 +0000 (07:57 +0100)
committerChristoph Mallon <christoph.mallon@gmx.de>
Wed, 7 Nov 2012 06:57:38 +0000 (07:57 +0100)
ir/ir/ircons.c
scripts/ir_spec.py

index 04b8f0b..5b28e5c 100644 (file)
@@ -708,7 +708,7 @@ ir_node *new_r_Anchor(ir_graph *irg)
         * get_Block_irg for anchor */
        res->in[0] = res;
 
-       /* we can't have NULL inputs so reference ourselfes for now */
+       /* we can't have NULL inputs so reference ourselves for now */
        for (i = 0; i <= (size_t)anchor_last; ++i) {
                set_irn_n(res, i, res);
        }
index 4905a53..017a3c0 100755 (executable)
@@ -181,7 +181,7 @@ class Bad:
        that a control flow edge can never be executed.
 
        The gigo optimisations ensures that nodes with Bad as their block, get
-       replaced by Bad themselfes. Nodes with at least 1 Bad input get exchanged
+       replaced by Bad themselves. Nodes with at least 1 Bad input get exchanged
        with Bad too. Exception to this rule are Block, Phi, Tuple and End node;
        This is because removing inputs from a Block is hairy operation (requiring,
        Phis to be shortened too for example). So instead of removing block inputs