summaryrefslogtreecommitdiff
path: root/mpz/ior.c
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2013-02-28 11:51:54 +0100
committerTorbjorn Granlund <tege@gmplib.org>2013-02-28 11:51:54 +0100
commitb91b82e43a49bc17bc29b6d20ab2ac791ac03c4b (patch)
tree848116f4e6a02f6ce33132ede5914998c30eac39 /mpz/ior.c
parent0bb491d0b183706209f784df3e1ac03ac2a84187 (diff)
downloadgmp-b91b82e43a49bc17bc29b6d20ab2ac791ac03c4b.tar.gz
Remove unused variables and functions.
Diffstat (limited to 'mpz/ior.c')
-rw-r--r--mpz/ior.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/mpz/ior.c b/mpz/ior.c
index 2a46fdc83..1d7705441 100644
--- a/mpz/ior.c
+++ b/mpz/ior.c
@@ -89,7 +89,6 @@ mpz_ior (mpz_ptr res, mpz_srcptr op1, mpz_srcptr op2)
if (op2_size < 0)
{
mp_ptr opx, opy;
- mp_limb_t cy;
/* Both operands are negative, so will be the result.
-((-OP1) | (-OP2)) = -(~(OP1 - 1) | ~(OP2 - 1)) =