aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/bitfld-2.c
blob: b61fec6084192271aa01d3051215ca5d550f2063 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* Copyright (C) 2002 Free Software Foundation, Inc.

   Tests we warn about overly-large assignments to bitfields.

   Source: Neil Booth, 28 Jan 2002.
*/

struct bf
{
  unsigned int a: 2;
  int b: 2;
};

struct bf p = {4, 0};		/* { dg-warning "truncated" "" } */
struct bf q = {0, 2};		/* { dg-warning "overflow" "" } */
struct bf r = {3, -2};		/* { dg-bogus "(truncated|overflow)" } */

void foo ()
{
  p.a = 4, p.b = 0;		/* { dg-warning "truncated" "" } */
  q.a = 0, q.b = 2;		/* { dg-warning "overflow" "" } */
  r.a = 3, r.b = -2;		/* { dg-bogus "(truncated|overflow)" } */
}