summaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2025-03-19 11:43:31 +0100
committerFabrice Bellard <fabrice@bellard.org>2025-03-19 11:43:31 +0100
commit6de88859e7fdb8c6418e1033e75ca4900e022b51 (patch)
treeb06b58bcb236554c12842d533fffd30cc72b1546 /fuzz
parent96e7965cf42e8f6560b2e18b7da80d3f57444d08 (diff)
downloadquickjs-6de88859e7fdb8c6418e1033e75ca4900e022b51.tar.gz
quickjs-6de88859e7fdb8c6418e1033e75ca4900e022b51.zip
more bignum cleanup
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/fuzz.dict3
-rw-r--r--fuzz/fuzz_common.c4
2 files changed, 0 insertions, 7 deletions
diff --git a/fuzz/fuzz.dict b/fuzz/fuzz.dict
index a5010e4..f31eb9f 100644
--- a/fuzz/fuzz.dict
+++ b/fuzz/fuzz.dict
@@ -14,9 +14,6 @@
"atan2"
"atanh"
"Atomics"
-"BigDecimal"
-"BigFloat"
-"BigFloatEnv"
"BigInt"
"BigInt64Array"
"BigUint64Array"
diff --git a/fuzz/fuzz_common.c b/fuzz/fuzz_common.c
index 9f1662d..92548d2 100644
--- a/fuzz/fuzz_common.c
+++ b/fuzz/fuzz_common.c
@@ -34,10 +34,6 @@ void test_one_input_init(JSRuntime *rt, JSContext *ctx) {
// 64 Kb
JS_SetMaxStackSize(rt, 0x10000);
- JS_AddIntrinsicBigFloat(ctx);
- JS_AddIntrinsicBigDecimal(ctx);
- JS_AddIntrinsicOperators(ctx);
- JS_EnableBignumExt(ctx, 1);
JS_SetModuleLoaderFunc(rt, NULL, js_module_loader, NULL);
JS_SetInterruptHandler(JS_GetRuntime(ctx), interrupt_handler, NULL);
js_std_add_helpers(ctx, 0, NULL);