1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* { dg-do compile } */ /* { dg-options "-O1 -fdump-tree-dse1-details" } */ char*g; char* f(){ char*p=__builtin_malloc(42); __builtin_memset(p,3,33); __builtin_memset(p,7,10); return p; } void h(){ char*p=__builtin_malloc(42); g=__builtin_memset(p,3,10); } /* { dg-final { scan-tree-dump-not "Deleted dead" "dse1" } } */