1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> main()4int main () 5 { 6 char foo [15]; 7 char bar [10]; 8 memcpy(foo, bar, 11); 9 return 0; 10 } 11 /* { dg-output "mudflap violation 1.*" } */ 12 /* { dg-output "Nearby object 1.*" } */ 13 /* { dg-output "mudflap object.*.main. bar.*" } */ 14 /* { dg-do run { xfail *-*-* } } */ 15