aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/pr14888.C
blob: e5c56aaabf2bb4e0746b434680340d8440d73368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// PR target/14888
// This used to ICE because the truncdfsf2 isn't completely eliminated

// { dg-do compile }
// { dg-options "-O2 -ffast-math" }

class xcomplex
{
public:
  float re, im;

  xcomplex &operator*= (const float &fact)
  { re*=fact; im*=fact; return *this; }
};

void foo (xcomplex &almT, xcomplex &almG)
{
  double gb;
  almT*=gb;
  almG*=gb*42;
}