fix abitest.c for x86_64 bug

This commit is contained in:
jiang
2014-04-28 14:05:55 +08:00
parent deaee6c249
commit 89f7aea980
2 changed files with 1 additions and 3 deletions

View File

@ -138,8 +138,6 @@ static int ret_longdouble_test_callback2(void *ptr) {
ret_longdouble_test_type a = {10};
ret_longdouble_test_type r;
r = f(a);
printf("%Lf \n", a.x);
printf("%Lf \n", r.x);
return ((r.x == a.x*5) && (f(a).x == a.x*5)) ? 0 : -1;
}