summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/Wtype-limits2.c
blob: 92151aa68c9c63dab93cf083413eed208142b8d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-Wtype-limits" } */
/* { dg-require-effective-target sync_char_short } */

#include <stdatomic.h>

unsigned foo (unsigned char *x)
{
  if (atomic_load (x) > 1000) /* { dg-warning "comparison is always false due to limited range of data type" } */
    return 0;
  return 1;
}