view gcc/testsuite/g++.dg/opt/float1.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// PR optimization/11637
// Origin: <nick@ilm.com>

// This used to fail to assemble on x86 because a decimal
// floating point litteral was emitted, which originated
// from a bogus REG_EQUAL note not removed by the combiner.

// { dg-do assemble }
// { dg-options "-O2 -fnon-call-exceptions" }

void f(long int seed);

void g(float &o)
{
  float a = 0.05f;
  float b = 1.0 - a;
  float c = 1.0 + a;

  f(0);
  o = a;
}