summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2019-12-13 15:39:23 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2019-12-13 15:39:23 (GMT)
commite43882908292c514bc01b2ca0c63ce6d0611c692 (patch)
treea73b0f280a2440f778b4ce2e29c09f8bee03a85b /generic/tclExecute.c
parent94e8f6336742c2df3ad63efbb598af741e0e7c5b (diff)
parent4cef9fbbe29e5ba76aaa7eaa7e91dd9b7d22e471 (diff)
downloadtcl-e43882908292c514bc01b2ca0c63ce6d0611c692.zip
tcl-e43882908292c514bc01b2ca0c63ce6d0611c692.tar.gz
tcl-e43882908292c514bc01b2ca0c63ce6d0611c692.tar.bz2
Merge 8.7
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index bc67d8b..68e85b2 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -18,7 +18,7 @@
#include "tclInt.h"
#include "tclCompile.h"
#include "tclOOInt.h"
-#include "tommath.h"
+#include "tclTomMath.h"
#include <math.h>
#include <assert.h>
@@ -8077,7 +8077,7 @@ ExecuteExtendedBinaryMathOp(
* Arguments are opposite sign; remainder is sum.
*/
- mp_init_ll(&big1, w1);
+ mp_init_i64(&big1, w1);
mp_add(&big2, &big1, &big2);
mp_clear(&big1);
BIG_RESULT(&big2);
@@ -8694,7 +8694,7 @@ ExecuteExtendedUnaryMathOp(
}
Tcl_TakeBignumFromObj(NULL, valuePtr, &big);
/* ~a = - a - 1 */
- mp_neg(&big, &big);
+ (void)mp_neg(&big, &big);
mp_sub_d(&big, 1, &big);
BIG_RESULT(&big);
case INST_UMINUS:
@@ -8706,12 +8706,12 @@ ExecuteExtendedUnaryMathOp(
if (w != WIDE_MIN) {
WIDE_RESULT(-w);
}
- mp_init_ll(&big, w);
+ mp_init_i64(&big, w);
break;
default:
Tcl_TakeBignumFromObj(NULL, valuePtr, &big);
}
- mp_neg(&big, &big);
+ (void)mp_neg(&big, &big);
BIG_RESULT(&big);
}