Changeset ae7d03c in mainline for uspace/app/sbi
- Timestamp:
- 2018-05-10T13:39:19Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e8975278
- Parents:
- b277bef
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-10 07:38:12)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-10 13:39:19)
- Location:
- uspace/app/sbi/src
- Files:
-
- 3 edited
-
input.c (modified) (1 diff)
-
run_expr.c (modified) (3 diffs)
-
stype_expr.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/input.c
rb277bef rae7d03c 103 103 * 104 104 * @return EOK on success, ENOENT when opening file fails. 105 */105 */ 106 106 static errno_t input_init_file(input_t *input, const char *fname) 107 107 { -
uspace/app/sbi/src/run_expr.c
rb277bef rae7d03c 805 805 * @param v2 Value of second argument 806 806 * @param res Place to store result 807 */807 */ 808 808 static void run_binop_char(run_t *run, stree_binop_t *binop, rdata_value_t *v1, 809 809 rdata_value_t *v2, rdata_item_t **res) … … 878 878 * @param v2 Value of second argument 879 879 * @param res Place to store result 880 */880 */ 881 881 static void run_binop_int(run_t *run, stree_binop_t *binop, rdata_value_t *v1, 882 882 rdata_value_t *v2, rdata_item_t **res) … … 2577 2577 * @param assign Assignment expression 2578 2578 * @param res Place to store result 2579 */2579 */ 2580 2580 static void run_assign(run_t *run, stree_assign_t *assign, rdata_item_t **res) 2581 2581 { -
uspace/app/sbi/src/stype_expr.c
rb277bef rae7d03c 916 916 * @param unop Unary operation 917 917 * @param rtitem Place to store result type 918 */918 */ 919 919 static void stype_unop(stype_t *stype, stree_unop_t *unop, 920 920 tdata_item_t **rtitem) … … 1191 1191 * @param arg_ti Base type 1192 1192 * @param rtitem Place to store result type 1193 */1193 */ 1194 1194 static void stype_access_tobject(stype_t *stype, stree_access_t *access, 1195 1195 tdata_item_t *arg_ti, tdata_item_t **rtitem) … … 1349 1349 * @param arg_ti Base type 1350 1350 * @param rtitem Place to store result type 1351 */1351 */ 1352 1352 static void stype_access_tebase(stype_t *stype, stree_access_t *access, 1353 1353 tdata_item_t *arg_ti, tdata_item_t **rtitem) … … 1840 1840 ptitem = box->arg->titem; 1841 1841 1842 /* Make compiler happy. */1842 /* Make compiler happy. */ 1843 1843 csi_sym = NULL; 1844 1844
Note:
See TracChangeset
for help on using the changeset viewer.
