aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr114672.c
blob: b69511fe8db97f9a6f2032061be286dfcf4b3f02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */

struct {
  __INT64_TYPE__ m : 60;
} s;

short a;
short b;

void
foo ()
{
  s.m += a * b;
}