view gcc/testsuite/c-c++-common/Wint-in-bool-context-3.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

/* { dg-options "-Wint-in-bool-context" } */
/* { dg-do compile } */

#define BITS_PER_UNIT 8

int foo (int count)
{
  int alignment;
 
  alignment = 1;
  while (!(count & alignment)
         && (alignment * 2 * BITS_PER_UNIT)) /* { dg-warning "boolean context" } */
    alignment <<= 1;
  return alignment * BITS_PER_UNIT;
}