]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr97317.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr97317.c
CommitLineData
1cde5d85
AM
1/* { dg-do compile } */
2/* { dg-options "-O2" } */
3
4struct a {
5 unsigned c : 17;
6};
7struct a b;
8int d(void) {
9 short e = b.c;
10 return e ? 0 : b.c;
11}