Commit 9d3493e6 by Sandra Loosemore Committed by Sandra Loosemore

re PR tree-optimization/39839 (loop invariant motion causes stack spill)

2010-07-22  Sandra Loosemore  <sandra@codesourcery.com>

	PR tree-optimization/39839

	gcc/testsuite/
	* gcc.target/arm/pr39839.c: New test case.

From-SVN: r162438
parent 944be25b
2010-07-22 Sandra Loosemore <sandra@codesourcery.com>
PR tree-optimization/39839
* gcc.target/arm/pr39839.c: New test case.
2010-07-22 Eric Botcazou <ebotcazou@adacore.com>
* gnat.dg/unchecked_convert5b.adb: New test.
......
/* { dg-options "-mthumb -Os -march=armv5te -mthumb-interwork -fpic" } */
/* { dg-require-effective-target arm_thumb1_ok } */
/* { dg-final { scan-assembler-not "str\[\\t \]*r.,\[\\t \]*.sp," } } */
struct S
{
int count;
char *addr;
};
void func(const char*, const char*, int, const char*);
/* This function should not need to spill to the stack. */
void test(struct S *p)
{
int off = p->count;
while (p->count >= 0)
{
const char *s = "xyz";
if (*p->addr) s = "pqr";
func("abcde", p->addr + off, off, s);
p->count--;
}
}
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