view gcc/testsuite/gcc.dg/char-compare.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR rtl-optimization/23241 */
/* Origin: Josh Conner <jconner@apple.com> */

/* { dg-do run } */
/* { dg-options "-O2" } */

extern void abort(void);

struct fbs {
  unsigned char uc;
} fbs1 = {255};

void fn(struct fbs *fbs_ptr)
{
  if ((fbs_ptr->uc != 255) && (fbs_ptr->uc != 0))
    abort();
}

int main(void)
{
  fn(&fbs1); 
  return 0;
}