5114c2a320
* testsuite/libmudflap.c/fail8-frag.c: Adjust scan pattern for mudflap dead object. * testsuite/libmudflap.c/fail9-frag.c: Ditto. From-SVN: r132557
22 lines
453 B
C
22 lines
453 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
int main ()
|
|
{
|
|
char *foo;
|
|
char *bar;
|
|
foo = (char *)malloc (10);
|
|
bar = (char *)malloc (10);
|
|
|
|
free(foo);
|
|
|
|
bar[4] = 'a'; /* touch source buffer */
|
|
memcpy(foo, bar, 10);
|
|
return 0;
|
|
}
|
|
|
|
/* { dg-output "mudflap violation 1.*memcpy dest.*" } */
|
|
/* { dg-output "Nearby object.*" } */
|
|
/* { dg-output "mudflap dead object.*malloc region.*alloc time.*dealloc time.*" } */
|
|
/* { dg-do run { xfail *-*-* } } */
|