blob: 11b6470abfca348f6e2fb6188de0e5fe47ff0192 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
/* LLVM LOCAL test not applicable */
/* { dg-require-fdump "" } */
void *arf ();
int
foo()
{
void *p = arf ();
if ((void (*)(void))p != 0)
return 1;
else
return 2;
}
/* The cast to a function pointer type must remain after all optimizations
are complete so that function pointer canonicalization works on those
targets which require it. */
/* { dg-final { scan-tree-dump-times "if \\(\\(void \\(\\*<.*>\\) \\(void\\)\\) p" 1 "optimized" } } */
/* { dg-final { cleanup-tree-dump "optimized" } } */