# -rw-r--r-- 327 bytes View raw
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
    switch (t) {
    default:
        if (isstore(t)) {
        case Tcall:
        case Ovastart:
            /* operations without result */
            r = R;
            k = Kw;
            op = t;
            goto DoOp;
        }
        err("label, instruction or jump expected");
    case ...
    ...
    }
DoOp:
    ...