aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/opt/complex1.C
blob: 0066c26c83bdaf8d0acf76f23d3913d33f46ae14 (plain)
1
2
3
4
5
6
7
8
9
// PR tree-opt/21994
// { dg-do compile }
// { dg-options "-O2" }

_Complex float f(void);
_Complex float g(void) throw()
{
  return f();
}