1  /* { dg-options "-fipa-modref -fipa-icf" } */
       2  float fma_test1(float a, float b, float c) {
       3    float x = a * b + c;
       4    return x;
       5  }
       6  float fma_test2(float a, float b, float c) {
       7    float x = a * b + c;
       8    return x;
       9  }
      10