Commit 6b1ef791 by David S. Miller Committed by David S. Miller

trunctfdf.c: New.

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

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

From-SVN: r57577
parent 99a32567
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.
......
/* 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment