blob: f3eda7500db8d5f5aaefe71fc1bf2d245ebd3caa [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-not "\tlbu\t" } } */
#include <string.h>
char c[10];
void
f1 ()
{
memcpy (c, "123456", 6);
}
void
f2 ()
{
memcpy (c, &"12345678"[2], 6);
}