re_intuit_start(): swap if/else blocks
authorDavid Mitchell <davem@iabyn.com>
Mon, 17 Feb 2014 19:39:44 +0000 (19:39 +0000)
committerDavid Mitchell <davem@iabyn.com>
Sun, 16 Mar 2014 18:03:49 +0000 (18:03 +0000)
commit40268e5b6860d2c4c03900f03b8c294af7b8c823
tree55ed513153f1c1cbee439c1d7bade7c84df68675
parentf746537561e2b62be6215d1e69383606e59deef5
re_intuit_start(): swap if/else blocks

Change

    {
        if (cond) {
            A;
            goto x;
        }
        B;
        goto y;
    }

into
    {
        if (!cond) {
            B;
            goto y;
        }
        A;
        goto x;
    }

Should be functionally equivalent, but will allow for some further code
factorisation shortly.
regexec.c