Commit 60b81a6f by Andreas Jaeger Committed by Andreas Jaeger

loadpre6.c: Fix prototype of malloc to be portable.

        * gcc.dg/tree-ssa/loadpre6.c: Fix prototype of malloc to be
        portable.

From-SVN: r109219
parent a7c633ea
2006-01-01 Andreas Jaeger <aj@suse.de>
* gcc.dg/tree-ssa/loadpre6.c: Fix prototype of malloc to be
portable.
2006-01-01 Jakub Jelinek <jakub@redhat.com>
PR c++/25294
......@@ -50,7 +50,7 @@ remove_useless_vars (tree *unexpanded_var_list, int dump_file)
cell = &((*cell)->common.chain);
}
}
extern void *malloc (int) __attribute__ ((malloc));
extern void *malloc (__SIZE_TYPE__) __attribute__ ((malloc));
int
main (void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment