]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/pr33693.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr33693.c
1 /* { dg-do compile } */
2
3 /* This used to ICE with type-checking enabled. */
4
5 unsigned long modify_field (unsigned long mask, long fieldval)
6 {
7 return (~fieldval & ~mask);
8 }