sync with trunk

This commit is contained in:
gladman 2012-01-07 15:42:44 +00:00
parent afd252b2ea
commit eca7796ff8
3 changed files with 4 additions and 14 deletions

View File

@ -944,29 +944,23 @@ speed_mpn_sub_n (struct speed_params *s)
SPEED_ROUTINE_MPN_BINARY_N (mpn_sub_n);
}
#if HAVE_NATIVE_mpn_addadd_n
double
speed_mpn_addadd_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_TRINARY_N (mpn_addadd_n);
}
#endif
#if HAVE_NATIVE_mpn_subadd_n
double
speed_mpn_subadd_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_TRINARY_N (mpn_subadd_n);
}
#endif
#if HAVE_NATIVE_mpn_addsub_n
double
speed_mpn_addsub_n (struct speed_params *s)
{
SPEED_ROUTINE_MPN_TRINARY_N (mpn_addsub_n);
}
#endif
#if HAVE_NATIVE_mpn_sumdiff_n
double

View File

@ -165,15 +165,9 @@ const struct routine_t {
#if HAVE_NATIVE_mpn_sumdiff_n
{ "mpn_sumdiff_n", speed_mpn_sumdiff_n, FLAG_R_OPTIONAL },
#endif
#if HAVE_NATIVE_mpn_addadd_n
{ "mpn_addadd_n", speed_mpn_addadd_n, },
#endif
#if HAVE_NATIVE_mpn_subadd_n
{ "mpn_subadd_n", speed_mpn_subadd_n, },
#endif
#if HAVE_NATIVE_mpn_addsub_n
{ "mpn_addsub_n", speed_mpn_addsub_n, },
#endif
#if HAVE_NATIVE_mpn_karaadd
{ "mpn_karaadd", speed_mpn_karaadd, },
#endif

View File

@ -232,8 +232,10 @@ for %%X in ( *.exe) do (
cd mpn
for %%X in ( ..\..\..\tests\mpn\t-*.c) do (
cl %OPT% /I..\..\.. /I..\..\..\tests %%X ..\misc.obj ..\memory.obj ..\trace.obj ..\refmpn.obj %MPIRLIB%
if errorlevel 1 goto :err
if not %%X == ..\..\..\tests\mpn\t-fat.c (
cl %OPT% /I..\..\.. /I..\..\..\tests %%X ..\misc.obj ..\memory.obj ..\trace.obj ..\refmpn.obj %MPIRLIB%
if errorlevel 1 goto :err
)
)
for %%X in ( *.exe) do (
echo testing mpn_%%X