Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / bcopy-1.c
blob5d3a882c8677f125eecf50c2e7f57c7d018a10f7
1 /* PR middle-end/31095, expand_builtin_memmove_args forgot to take into
2 account that tree folding of builtins can add an extra NOP_EXPR. */
4 struct timeval
6 int tv_sec;
7 int tv_usec;
8 };
9 void
10 capture_next_packet (void)
12 struct timeval past, now, then;
13 __builtin_bcopy (&then, &past, sizeof (then));