Skip to content

Commit 67b1ab8

Browse files
committedOct 7, 2024
squash! make codegen
1 parent dd6d1a1 commit 67b1ab8

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed
 

‎gen/function_source.c

-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ int main(int argc, char **argv)
7777
js_std_eval_binary(ctx, qjsc_function_source, qjsc_function_source_size, 0);
7878
js_std_loop(ctx);
7979
JS_FreeContext(ctx);
80-
js_std_free_handlers(rt);
8180
JS_FreeRuntime(rt);
8281
return 0;
8382
}

‎gen/hello.c

-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ int main(int argc, char **argv)
4040
js_std_eval_binary(ctx, qjsc_hello, qjsc_hello_size, 0);
4141
js_std_loop(ctx);
4242
JS_FreeContext(ctx);
43-
js_std_free_handlers(rt);
4443
JS_FreeRuntime(rt);
4544
return 0;
4645
}

‎gen/hello_module.c

-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ int main(int argc, char **argv)
9898
js_std_eval_binary(ctx, qjsc_hello_module, qjsc_hello_module_size, 0);
9999
js_std_loop(ctx);
100100
JS_FreeContext(ctx);
101-
js_std_free_handlers(rt);
102101
JS_FreeRuntime(rt);
103102
return 0;
104103
}

‎gen/test_fib.c

-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ int main(int argc, char **argv)
7171
js_std_eval_binary(ctx, qjsc_test_fib, qjsc_test_fib_size, 0);
7272
js_std_loop(ctx);
7373
JS_FreeContext(ctx);
74-
js_std_free_handlers(rt);
7574
JS_FreeRuntime(rt);
7675
return 0;
7776
}

0 commit comments

Comments
 (0)