URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [arm/] [pr42505.c] - Rev 751
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-options "-Os" } */ /* { dg-final { scan-assembler-not "str\[\\t \]*r.,\[\\t \]*.sp," } } */ struct A { int f1; int f2; }; int func(int c); /* This function should not need to spill anything to the stack. */ int test(struct A* src, struct A* dst, int count) { while (count--) { if (!func(src->f2)) { return 0; } *dst++ = *src++; } return 1; }
Go to most recent revision | Compare with Previous | Blame | View Log