PR tree-optimization/33562
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / complex-5.c
blobe6d027f57effa73cbfa526bda0291efa1e7c44ae
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fno-tree-dce -fdump-tree-optimized" } */
3 _Complex int t = 0;
4 int f(void)
6 t = 0;
7 __real__ t = 2;
8 __imag__ t = 2;
11 /* { dg-final { scan-tree-dump-times "__complex__" 0 "optimized" } } */