mirror of git://gcc.gnu.org/git/gcc.git
20061101-1.c: New test.
* gcc.c-torture/execute/20061101-1.c: New test. From-SVN: r118377
This commit is contained in:
parent
cb953056bb
commit
36c90fd27a
|
@ -1,3 +1,7 @@
|
||||||
|
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>
|
2006-11-01 Richard Guenther <rguenther@suse.de>
|
||||||
|
|
||||||
* testsuite/gcc.target/i386/fpprec-1.c: New testcase.
|
* testsuite/gcc.target/i386/fpprec-1.c: New testcase.
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
/* 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;
|
||||||
|
}
|
Loading…
Reference in New Issue