2009-07-17 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.target / mips / memcpy-1.c
blobf3eda7500db8d5f5aaefe71fc1bf2d245ebd3caa
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler-not "\tlbu\t" } } */
5 #include <string.h>
7 char c[10];
9 void
10 f1 ()
12 memcpy (c, "123456", 6);
15 void
16 f2 ()
18 memcpy (c, &"12345678"[2], 6);