Merge from the pain train
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20040517-1.c
blob4b09b536d133a4ad453d8da3af7b04e9ffd6b031
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-alias1-vops" } */
3 extern void abort (void);
4 int a;
6 extern void __attribute__ ((malloc)) *foo ();
8 void bar (void)
9 {
10 a = 1;
11 foo ();
12 if (a)
13 abort ();
16 /* We used to treat malloc functions like pure and const functions, but
17 malloc functions may clobber global memory. Only the function result
18 does not alias any other pointer.
19 Hence, we must have a VDEF for a before and after the call to foo(). */
20 /* { dg-final { scan-tree-dump-times "V_MAY_DEF" 1 "alias1"} } */