Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/run_texpr.c

    rc5cb943d r051bc69a  
    140140        }
    141141
    142         /* Make compiler happy. */
    143         titem = NULL;
    144 
    145142        switch (sym->sc) {
    146143        case sc_csi:
     
    150147                titem->u.tobject = tobject;
    151148
    152                 tobject->static_ref = sn_nonstatic;
     149                tobject->static_ref = b_false;
    153150                tobject->csi = sym->u.csi;
    154151                list_init(&tobject->targs);
     
    281278        (void) tliteral;
    282279
    283         /* Make compiler happy. */
    284         tpc = 0;
    285 
    286280        switch (tliteral->tlc) {
    287281        case tlc_bool: tpc = tpc_bool; break;
     
    348342        }
    349343
    350         /* Make compiler happy. */
    351         titem = NULL;
    352 
    353344        switch (sym->sc) {
    354345        case sc_csi:
     
    358349                titem->u.tobject = tobject;
    359350
    360                 tobject->static_ref = sn_nonstatic;
     351                tobject->static_ref = b_false;
    361352                tobject->csi = sym->u.csi;
    362353                list_init(&tobject->targs);
     
    438429
    439430        list_node_t *farg_n;
     431        stree_targ_t *farg;
    440432
    441433#ifdef DEBUG_RUN_TRACE
     
    458450        }
    459451
    460         tobject->static_ref = sn_nonstatic;
     452        tobject->static_ref = b_false;
    461453        tobject->csi = base_ti->u.tobject->csi;
    462454        list_init(&tobject->targs);
     
    466458        arg_n = list_first(&tapply->targs);
    467459        while (farg_n != NULL && arg_n != NULL) {
     460                farg = list_node_data(farg_n, stree_targ_t *);
    468461                arg = list_node_data(arg_n, stree_texpr_t *);
    469462
Note: See TracChangeset for help on using the changeset viewer.