re_intuit_start(): swap another if/else block
authorDavid Mitchell <davem@iabyn.com>
Mon, 17 Feb 2014 19:45:12 +0000 (19:45 +0000)
committerDavid Mitchell <davem@iabyn.com>
Sun, 16 Mar 2014 18:03:49 +0000 (18:03 +0000)
commitab60c45aeb1dd179abc80fd3a27963e6518497a7
treeb5510806c9f55915c0023ca989705309375369dc
parent40268e5b6860d2c4c03900f03b8c294af7b8c823
re_intuit_start(): swap another if/else block

Change

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

into

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

Functionally equivalent, but eliminates one 'goto'.
regexec.c