]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/memcpy-1.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / memcpy-1.c
CommitLineData
a1da787d 1/* { dg-do compile } */
0674b9d0 2/* { dg-options "-O2 -fdump-tree-optimized" } */
0f0b2613 3/* PR36598 AVR fail maybe due to cost metrics */
fef94f76 4/* { dg-final { scan-tree-dump-times "nasty_local\\." 0 "optimized" { xfail { "avr-*-*" } } } } */
a1da787d
JH
5struct a {int a,b,c;} a;
6int test(struct a a)
7{
8struct a nasty_local;
3faa4928 9__builtin_memcpy (&nasty_local,&a, sizeof(a));
a1da787d
JH
10return nasty_local.a;
11}