Commit a6582090 authored by David Gibson's avatar David Gibson
Browse files

target/ppc: Style fixes for monitor.c

parent fe4ade31
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -34,8 +34,9 @@ static target_long monitor_get_ccr (const struct MonitorDef *md, int val)
    int i;

    u = 0;
    for (i = 0; i < 8; i++)
    for (i = 0; i < 8; i++) {
        u |= env->crf[i] << (32 - (4 * (i + 1)));
    }

    return u;
}