2 // Origin: <nick@ilm.com>
4 // This used to fail on x86 because the reg-stack pass deleted
5 // an insn that could seemingly trap (but actually doesn't)
6 // without updating the CFG.
9 // { dg-options "-O2 -fnon-call-exceptions" }
13 D1 GS() const {D1 d;float f=.299*l;d.l=f;return d;}
14 static D1 G() {return D1();}
19 D2(const D1& gi) : g(gi) {}
20 D2 GS() const {return D2(g.GS());}
34 B::B(const D2 &mi) : fm(mi.GS()) {}