view gcc/testsuite/gcc.target/i386/pr94795-1.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
line wrap: on
line source

/* PR target/94795 */
/* { dg-do compile } */
/* { dg-options "-O2" } */

char fooc (char x)
{
  return x ? -1 : 0;
}

short foos (short x)
{
  return x ? -1 : 0;
}

long fooi (long x)
{
  return x ? -1 : 0;
}

/* { dg-final { scan-assembler-not "test|cmp" } } */
/* { dg-final { scan-assembler-times "sbb" 3 } } */