tcg: Reindent parts of liveness_pass_1
authorRichard Henderson <richard.henderson@linaro.org>
Tue, 27 Nov 2018 21:32:33 +0000 (13:32 -0800)
committerRichard Henderson <richard.henderson@linaro.org>
Tue, 25 Dec 2018 19:57:57 +0000 (06:57 +1100)
commit152c35aab43213335e1ae8b865d259c0222dd110
tree3747c42b4930e34d2f7be211ffcaa81b53938676
parent1894f69a612b35c2a39b44a824da04d74bfe324a
tcg: Reindent parts of liveness_pass_1

There are two blocks of the form

    if (foo) {
        stuff1;
        goto bar;
    } else {
    baz:
        stuff2;
    }

which have unnecessary and confusing indentation.
Remove the else and unindent stuff2.

Reviewed-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
tcg/tcg.c