Commit 4fd7b3cb by Steve Ellcey Committed by Steve Ellcey

* gcc.dg/ia64-postinc.c: New test.

From-SVN: r90677
parent c4759ce3
2004-11-15 Steve Ellcey <sje@cup.hp.com>
* gcc.dg/ia64-postinc.c: New test.
2004-11-15 Mark Mitchell <mark@codesourcery.com>
* gcc.dg/format/cmn-err-1.c: Add tests for "%p".
......
/* { dg-do compile { target ia64-*-* } } */
/* { dg-options "-O2" } */
/* { dg-options "-O2 -mlp64" { target ia64-*-hpux* } } */
void copy_loop_ldouble (void *xdest,
const void *xsrc,
long roff,
long soff,
long len,
long shift)
{ __float128 *dest = xdest;
const long double *src;
long i;
roff /= sizeof (__float128);
soff /= sizeof (__float128);
src = xsrc;
src += shift * soff;
for (i = 0; i < len - shift; ++i) {
*dest = *src;
dest += roff;
src += soff;
}
}
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