summaryrefslogtreecommitdiff
path: root/mpz/cfdiv_r_2exp.c
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2004-04-23 22:09:57 +0200
committerKevin Ryde <user42@zip.com.au>2004-04-23 22:09:57 +0200
commita3bc0291e1fac137ed0adee824ea75204691c7cb (patch)
tree04638bdc42da6ce393462bde75a4d64e3ef885e3 /mpz/cfdiv_r_2exp.c
parent0141d888b8f882643cd1aa52f76f78cba9f8332b (diff)
downloadgmp-a3bc0291e1fac137ed0adee824ea75204691c7cb.tar.gz
* mpz/aorsmul.c, mpz/aorsmul_i.c, mpz/cfdiv_q_2exp.c,
mpz/cfdiv_r_2exp.c, mpq/aors.c, mpf/ceilfloor.c: Give REGPARM_ATTR() on function definition too, as demanded by by gcc 3.4.
Diffstat (limited to 'mpz/cfdiv_r_2exp.c')
-rw-r--r--mpz/cfdiv_r_2exp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpz/cfdiv_r_2exp.c b/mpz/cfdiv_r_2exp.c
index ad4d316f8..c56782a8f 100644
--- a/mpz/cfdiv_r_2exp.c
+++ b/mpz/cfdiv_r_2exp.c
@@ -1,6 +1,6 @@
/* mpz_cdiv_r_2exp, mpz_fdiv_r_2exp -- remainder from mpz divided by 2^n.
-Copyright 2001, 2002 Free Software Foundation, Inc.
+Copyright 2001, 2002, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -32,7 +32,7 @@ MA 02111-1307, USA. */
static void __gmpz_cfdiv_r_2exp _PROTO ((REGPARM_3_1 (mpz_ptr w, mpz_srcptr u, unsigned long cnt, int dir))) REGPARM_ATTR (1);
#define cfdiv_r_2exp(w,u,cnt,dir) __gmpz_cfdiv_r_2exp (REGPARM_3_1 (w, u, cnt, dir))
-static void
+REGPARM_ATTR (1) static void
cfdiv_r_2exp (mpz_ptr w, mpz_srcptr u, unsigned long cnt, int dir)
{
mp_size_t usize, abs_usize, limb_cnt, i;