URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr49644.C] - Rev 693
Compare with Previous | Blame | View Log
// PR c/49644
// { dg-do run }
extern "C" void abort ();
int
main ()
{
_Complex double a[12], *c = a, s = 3.0 + 1.0i;
double b[12] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 }, *d = b;
int i;
for (i = 0; i < 6; i++)
*c++ = *d++ * s;
if (c != a + 6 || d != b + 6)
abort ();
return 0;
}