tweek macros

This commit is contained in:
jasonmoxham 2009-08-23 17:32:26 +00:00
parent e91944e71c
commit e115636d83
3 changed files with 5 additions and 3 deletions

View File

@ -55,7 +55,7 @@ default=false
if [ -z "$CFLAGS" ]
then
CFLAGS="-O2 -fomit-frame-pointer -I$MPIR_DIR -include ${MPIR_NAME}.h"
CFLAGS="-m32 -O2 -fomit-frame-pointer -I$MPIR_DIR -include ${MPIR_NAME}.h"
echo "Using default CFLAGS = \"$CFLAGS\""
default=true
else

View File

@ -1969,6 +1969,7 @@ mp_limb_t mpn_rshift2 _PROTO ((mp_ptr,mp_srcptr,mp_size_t));
__GMP_DECLSPEC mp_limb_t mpn_addlsh1_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
#elif HAVE_NATIVE_mpn_addlsh_n
#define mpn_addlsh1_n(__xp,__yp,__zp,__n) mpn_addlsh_n((__xp),(__yp),(__zp),(__n),1)
#define HAVE_NATIVE_mpn_addlsh1_n
#endif
#if HAVE_NATIVE_mpn_sublsh1_n
@ -1976,6 +1977,7 @@ __GMP_DECLSPEC mp_limb_t mpn_addlsh1_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcpt
__GMP_DECLSPEC mp_limb_t mpn_sublsh1_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
#elif HAVE_NATIVE_mpn_sublsh_n
#define mpn_sublsh1_n(__xp,__yp,__zp,__n) mpn_sublsh_n((__xp),(__yp),(__zp),(__n),1)
#define HAVE_NATIVE_mpn_sublsh1_n
#endif
#if HAVE_NATIVE_mpn_inclsh_n

View File

@ -898,14 +898,14 @@ speed_mpn_sublsh_n (struct speed_params *s)
double
speed_mpn_inclsh_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_inclsh_n);
SPEED_ROUTINE_MPN_UNARY_1_CALL (mpn_inclsh_n(wp,s->xp,s->size,s->r));
}
#endif
#if HAVE_NATIVE_mpn_declsh_n
double
speed_mpn_declsh_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_UNARY_1 (mpn_declsh_n);
SPEED_ROUTINE_MPN_UNARY_1_CALL (mpn_declsh_n(wp,s->xp,s->size,s->r));
}
#endif
#if HAVE_NATIVE_mpn_rsh1add_n