view gcc/testsuite/gcc.dg/tree-ssa/complex-5.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O1 -fno-tree-dce -fdump-tree-optimized" } */
_Complex int t = 0;
int f(void)
{
  t = 0;
 __real__ t = 2;
 __imag__ t = 2;
}

/* { dg-final { scan-tree-dump-times "__complex__" 0 "optimized" } } */