Fix gimplification of ordering comparisons of arrays of bytes
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr113026-1.c
blob56dfef3b36c4696a372e4a12e4b4e626ed2a3255
1 /* { dg-do compile } */
2 /* { dg-additional-options "-Wall" } */
4 char dst[16];
6 void
7 foo (char *src, long n)
9 for (long i = 0; i < n; i++)
10 dst[i] = src[i]; /* { dg-bogus "" } */