view gcc/testsuite/gcc.dg/pr79080.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR target/79080 */
/* { dg-do compile } */
/* { dg-options "-O1" } */
/* { dg-additional-options "-mcpu=8548" { target { powerpc*-*-* && ilp32 } } } */

int
foo (char x)
{
  int a;

  for (;;)
    {
      x += 59;
      if (x != 0)
        a = 0;
      else
        return 0;
    }
}