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
2 changed files with 36 additions and 0 deletions
|
@ -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>
|
||||
|
||||
* testsuite/gcc.target/i386/fpprec-1.c: New testcase.
|
||||
|
|
32
gcc/testsuite/gcc.c-torture/execute/20061101-1.c
Normal file
32
gcc/testsuite/gcc.c-torture/execute/20061101-1.c
Normal file
|
@ -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…
Add table
Reference in a new issue