aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/complex-2.c
blob: d2d42b93de2fe3b9a71e54b1245f92e8b6403334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Verify that we don't libcall for complex / real.  */
/* { dg-do compile } */
/* { dg-options "-std=c99 -O -fdump-tree-optimized" } */

typedef _Complex float C;

C foo(C x, float y)
{
  return x / y;
}

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