summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-12-03 16:01:44 +0000
committerthevenyp <thevenyp@211d60ee-9f03-0410-a15a-8952a2c7a4e4>2013-12-03 16:01:44 +0000
commit949b768fec15a39953d836ee2f154bfdf55c69f1 (patch)
treec9d9b4e2f7e5c4f60bc084c91512e574c33f92a8
parent517d80c192c0496d15131f6052b4d7eccf0e3670 (diff)
downloadmpc-949b768fec15a39953d836ee2f154bfdf55c69f1.tar.gz
[tests/] Fix templated tests for mpc_mul_2ui.
git-svn-id: svn://scm.gforge.inria.fr/svn/mpc/branches/benchs_tests@1371 211d60ee-9f03-0410-a15a-8952a2c7a4e4
-rw-r--r--tests/tmul_2ui_tmpl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tmul_2ui_tmpl.c b/tests/tmul_2ui_tmpl.c
index a1afda2..8b736b5 100644
--- a/tests/tmul_2ui_tmpl.c
+++ b/tests/tmul_2ui_tmpl.c
@@ -21,9 +21,9 @@ along with this program. If not, see http://www.gnu.org/licenses/ .
#include "templates.h"
#define MPC_FUNCTION_CALL \
- P[0].mpc_inex = mpc_mul_2ui (P[1].mpc, P[2].mpc, P[3].si, P[4].mpc_rnd)
+ P[0].mpc_inex = mpc_mul_2ui (P[1].mpc, P[2].mpc, P[3].ui, P[4].mpc_rnd)
#define MPC_FUNCTION_CALL_REUSE_OP1 \
- P[0].mpc_inex = mpc_mul_2ui (P[1].mpc, P[1].mpc, P[3].si, P[4].mpc_rnd)
+ P[0].mpc_inex = mpc_mul_2ui (P[1].mpc, P[1].mpc, P[3].ui, P[4].mpc_rnd)
#include "tgeneric.tpl"