]> git.mar77i.info Git - shitscript/commitdiff
remove debug output
authormar77i <mar77i@protonmail.ch>
Mon, 18 Nov 2024 17:38:40 +0000 (18:38 +0100)
committermar77i <mar77i@protonmail.ch>
Mon, 18 Nov 2024 17:38:40 +0000 (18:38 +0100)
runtime.c

index d8389ebae08d50c532a763192a68e190822d356c..c6baab11a1444fba144e7002a26b48da7758f2ef 100644 (file)
--- a/runtime.c
+++ b/runtime.c
@@ -123,7 +123,6 @@ static inline int assign_value(
     struct growable *scope, char *name, struct scope_value value
 ) {
     size_t i;
-    printf("assigning %s value %"PRIdMAX"\n", name, value.u.i);
     for (i = 0; i < scope->len; i++) {
         if (strcmp(GET_SCOPE_ITEM(*scope, i).name, name) == 0) {
             GET_SCOPE_ITEM(*scope, i).value = value;
@@ -157,7 +156,6 @@ int evaluate_statement(const struct program p, struct growable *scope, size_t *s
         if (evaluate_arith(p, scope, stmt, UNTIL_SEMICOLON, &value.u.i) < 0)
             return -1;
         *stmt = value.u.i;
-        printf("goto %zu\n", *stmt);
     } else {
         fprintf(stderr, "Error: canot execute: ");
         ast_item_dump(stderr, *item);