Commit 36c90fd2 by Eric Botcazou Committed by Eric Botcazou

20061101-1.c: New test.

	* gcc.c-torture/execute/20061101-1.c: New test.

From-SVN: r118377
parent cb953056
2006-11-01 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.c-torture/execute/20061101-1.c: New test.
2006-11-01 Richard Guenther <rguenther@suse.de>
* testsuite/gcc.target/i386/fpprec-1.c: New testcase.
/* PR rtl-optimization/28970 */
/* Origin: Peter Bergner <bergner@vnet.ibm.com> */
extern void abort (void);
int tar (int i)
{
if (i != 36863)
abort ();
return -1;
}
void bug(int q, int bcount)
{
int j = 0;
int outgo = 0;
while(j != -1)
{
outgo++;
if (outgo > q-1)
outgo = q-1;
j = tar (outgo*bcount);
}
}
int main(void)
{
bug(5, 36863);
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