Merge from mainline.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr22051-1.c
blob4815be0ac9e13c0c8f8e10832d809ea584119750
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-optimized" } */
5 void *arf ();
6 int
7 foo()
9 void *p = arf ();
11 if ((void (*)(void))p != 0)
12 return 1;
13 else
14 return 2;
17 /* The cast to a function pointer type must remain after all optimizations
18 are complete so that function pointer canonicalization works on those
19 targets which require it. */
20 /* { dg-final { scan-tree-dump-times "if \\(\\(void \\(\\*<.*>\\) \\(void\\)\\) p" 1 "optimized" } } */
21 /* { dg-final { cleanup-tree-dump "optimized" } } */