view gcc/testsuite/c-c++-common/Wint-in-bool-context-2.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

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

typedef unsigned u32;
typedef unsigned char u8;
#define KEYLENGTH 8

int foo (u8 plen, u32 key)
{
  if ((plen < KEYLENGTH) && (key << plen)) /* { dg-bogus "boolean context" } */
    return -1;

  if ((plen << KEYLENGTH) && (key < plen)) /* { dg-warning "boolean context" } */
    return -2;

  return 0;
}