summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr103376.c
blob: 8c14c3ded38c9fc89b37b2bac2a6ff259304cc2d (plain)
1
2
3
4
5
6
7
8
9
/* { dg-additional-options "-Ofast" } */
__attribute__ ((optimize ("no-associative-math"))) double
fn3 (double h, double l)
{
  return h + l;
}

double fn3 (double, double) __attribute__ ((optimize ("O2,no-associative-math")));