Somehow, I missed to checkin this test when I fixed pr17635 (with

appropriate ChangeLog entry).

From-SVN: r90757
This commit is contained in:
Devang Patel 2004-11-16 12:04:08 -08:00
parent 57e4228616
commit a3fcfe27d8
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/* PR 17635 */
/* Contributed by Devang Patel <dpatel@apple.com> */
/* { dg-do compile } */
/* { dg-options "-O2 -ftree-vectorize" } */
void foo(int i)
{
while (1)
if (i) ++i;
}