aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 74a94859aba..4207ff0b71f 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1327,7 +1327,7 @@ exec_byte_code (Lisp_Object fun, ptrdiff_t args_template,
1327 Lisp_Object v1 = TOP; 1327 Lisp_Object v1 = TOP;
1328 intmax_t res; 1328 intmax_t res;
1329 if (FIXNUMP (v1) && FIXNUMP (v2) 1329 if (FIXNUMP (v1) && FIXNUMP (v2)
1330 && !INT_MULTIPLY_WRAPV (XFIXNUM (v1), XFIXNUM (v2), &res) 1330 && !ckd_mul (&res, XFIXNUM (v1), XFIXNUM (v2))
1331 && !FIXNUM_OVERFLOW_P (res)) 1331 && !FIXNUM_OVERFLOW_P (res))
1332 TOP = make_fixnum (res); 1332 TOP = make_fixnum (res);
1333 else 1333 else