OSDN Git Service

* configure.ac (gcc_cv_ld_eh_gc_sections): Redirect objdump errors
[pf3gnuchains/gcc-fork.git] / libmudflap / testsuite / libmudflap.c / fail11-frag.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 char *y;
5 int main ()
6 {
7 int i = 10;
8 char *x = (char *) malloc (i * sizeof (char));
9 y = x;
10 while (i--)
11 {
12   ++x;
13   *x = 0;
14 }
15 return 0;
16 }
17 /* { dg-output "mudflap violation 1.*" } */
18 /* { dg-output "Nearby object 1.*" } */
19 /* { dg-output "mudflap object.*malloc region.*" } */
20 /* { dg-do run { xfail *-*-* } } */