trunctfdf.c: New.

2002-09-26  David S. Miller  <davem@redhat.com>

	* gcc.c-torture/compile/trunctfdf.c: New.

From-SVN: r57577
This commit is contained in:
David S. Miller 2002-09-26 21:14:12 -07:00 committed by David S. Miller
parent 99a3256796
commit 6b1ef791cc
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-09-26 David S. Miller <davem@redhat.com>
* gcc.c-torture/compile/trunctfdf.c: New.
2002-09-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* lib/target-supports.exp (check_weak_available): Handle solaris2.

View File

@ -0,0 +1,14 @@
/* Sparc w/128-bit long double bombed on this because even though
the trunctfdf libcall passed the long double by reference, the
libcall was still marked as LCT_CONST instead of LCT_PURE. */
double *copy(long double *first, long double *last, double *result)
{
int n;
for (n = last - first; n > 0; --n) {
*result = *first;
++first;
++result;
}
return result;
}