Commit 42ab5b28 by Steve Ellcey Committed by Steve Ellcey

re PR middle-end/38615 (invalid promotion to static from auto)

	PR middle-end/38615
	* gcc.dg/pr38615.c: New test.

From-SVN: r143571
parent d0ea0759
2009-01-22 Steve Ellcey <sje@cup.hp.com>
PR middle-end/38615
* gcc.dg/pr38615.c: New test.
2009-01-22 Uros Bizjak <ubizjak@gmail.com>
PR target/38931
......
/* { dg-do run } */
int t;
extern void abort (void);
int f(int t, const int *a)
{
const int b[] = { 1, 2, 3};
if (!t)
return f(1, b);
return b == a;
}
int main(void)
{
if (f(0, 0))
abort ();
return 0;
}
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