Commit b6f0e9b7 by Richard Guenther Committed by Richard Biener

pr23382.c: Fix typo.

2007-01-26  Richard Guenther  <rguenther@suse.de>

	* gcc.dg/tree-ssa/pr23382.c: Fix typo.

From-SVN: r121205
parent d3c36974
2007-01-26 Richard Guenther <rguenther@suse.de>
* gcc.dg/tree-ssa/pr23382.c: Fix typo.
2007-01-26 Tobias Burnus <burnus@net-b.de> 2007-01-26 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/gomp/gomp.exp: Support .f03 extension. * gfortran.dg/gomp/gomp.exp: Support .f03 extension.
...@@ -11,7 +11,7 @@ void *malloc(__SIZE_TYPE__ size) __attribute__((malloc)); ...@@ -11,7 +11,7 @@ void *malloc(__SIZE_TYPE__ size) __attribute__((malloc));
int f(void) int f(void)
{ {
struct a *a = malloc(sizeof(struct a)); struct a *a = malloc(sizeof(struct a));
return a.length; return a->length;
} }
/* { dg-final { scan-tree-dump-times "VDEF <HEAP" 1 "alias1"} } */ /* { dg-final { scan-tree-dump-times "VDEF <HEAP" 1 "alias1"} } */
/* { dg-final { scan-tree-dump-times "VDEF <HEAP" 1 "alias2"} } */ /* { dg-final { scan-tree-dump-times "VDEF <HEAP" 1 "alias2"} } */
......
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