Changes in uspace/app/sbi/src/run_texpr.c [c5cb943d:051bc69a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/run_texpr.c
rc5cb943d r051bc69a 140 140 } 141 141 142 /* Make compiler happy. */143 titem = NULL;144 145 142 switch (sym->sc) { 146 143 case sc_csi: … … 150 147 titem->u.tobject = tobject; 151 148 152 tobject->static_ref = sn_nonstatic;149 tobject->static_ref = b_false; 153 150 tobject->csi = sym->u.csi; 154 151 list_init(&tobject->targs); … … 281 278 (void) tliteral; 282 279 283 /* Make compiler happy. */284 tpc = 0;285 286 280 switch (tliteral->tlc) { 287 281 case tlc_bool: tpc = tpc_bool; break; … … 348 342 } 349 343 350 /* Make compiler happy. */351 titem = NULL;352 353 344 switch (sym->sc) { 354 345 case sc_csi: … … 358 349 titem->u.tobject = tobject; 359 350 360 tobject->static_ref = sn_nonstatic;351 tobject->static_ref = b_false; 361 352 tobject->csi = sym->u.csi; 362 353 list_init(&tobject->targs); … … 438 429 439 430 list_node_t *farg_n; 431 stree_targ_t *farg; 440 432 441 433 #ifdef DEBUG_RUN_TRACE … … 458 450 } 459 451 460 tobject->static_ref = sn_nonstatic;452 tobject->static_ref = b_false; 461 453 tobject->csi = base_ti->u.tobject->csi; 462 454 list_init(&tobject->targs); … … 466 458 arg_n = list_first(&tapply->targs); 467 459 while (farg_n != NULL && arg_n != NULL) { 460 farg = list_node_data(farg_n, stree_targ_t *); 468 461 arg = list_node_data(arg_n, stree_texpr_t *); 469 462
Note:
See TracChangeset
for help on using the changeset viewer.