blob: e6033a783f433a9f70844bcb8eb2b153ed5a4f82 [file] [log] [blame]
/* PR target/60693 */
/* { dg-do compile } */
/* { dg-options "-O0" } */
void bar (char *);
void
foo (void)
{
char buf[4096];
__builtin_memcpy (buf, (void *) 0x8000, 4096);
bar (buf);
}