From 40c7febca8343e236531b19897d5ca1f2e715c2f Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 5 Oct 2024 15:08:16 +0900 Subject: [PATCH] mruby-bigint (uadd): remove redundant trim() --- mrbgems/mruby-bigint/core/bigint.c | 1 - 1 file changed, 1 deletion(-) diff --git a/mrbgems/mruby-bigint/core/bigint.c b/mrbgems/mruby-bigint/core/bigint.c index 33229c72d..13a7901bf 100644 --- a/mrbgems/mruby-bigint/core/bigint.c +++ b/mrbgems/mruby-bigint/core/bigint.c @@ -200,7 +200,6 @@ uadd(mrb_state *mrb, mpz_t *z, mpz_t *x, mpz_t *y) c >>= DIG_SIZE; } z->p[y->sz] = (mp_limb)c; - trim(z); } /* z = y - x, ignoring sign */