aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr95141.c
blob: b6cbba2f9087bedbf9c4acb4e5c9bfa3969022f1 (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */

#include <stdint.h>

uint64_t test(uint8_t IA1)
{
  return (uint8_t)(IA1 & 158) & 1UL; /* { dg-bogus "integer overflow" } */
}