* gcc.dg/Wunreachable-8.c : New test.

From-SVN: r83914
This commit is contained in:
Nitin Yewale 2004-06-30 16:42:24 +00:00 committed by Jeff Law
parent bd535dc55c
commit a9c085889a
2 changed files with 23 additions and 1 deletions

View File

@ -1,6 +1,8 @@
2004-06-30 Nitin Yewale <nitiny@kpitcummins.com>
* gcc.dg/h8300-ice2.c : New test
* gcc.dg/Wunreachable-8.C: New test.
* gcc.dg/h8300-ice2.c : New test.
2004-06-30 Tobias Schlueter <tobias.shclueter@physik.uni-muenchen.de>

View File

@ -0,0 +1,20 @@
/* { dg-do compile } */
/* { dg-options "-O2 -Wunreachable-code" } */
float Factorial(float X)
{
float val = 1.0;
int k,j;
for (k=1; k < 5; k++)
{
val += 1.0;
}
return (val); /* { dg-bogus "will never be executed" } */
}
int main (void)
{
float result;
result=Factorial(2.1);
return (0);
}