* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / inline-mcpy.c
blob4917394246aa891e93c51e19f015d527efc61f98
1 /* Test if we inline memcpy even with -Os, when the user requested it. */
2 /* Don't name this test with memcpy in its name, otherwise the scan-assembler
3 would be confused. */
4 /* { dg-do compile { target i?86-*-linux* x86_64-*-linux* } } */
5 /* { dg-options "-Os -minline-all-stringops" } */
6 /* { dg-final { scan-assembler-not "memcpy" } } */
7 char f(int i)
9 char *ram_split[] = { "5:3", "3:1", "1:1", "3:5" };
10 return ram_split[i][0];