blob: 764d6f01bdbffbe4129071cbab05d5eb67bc5c1d [file] [log] [blame]
/* Test __ASSOCIATIVE_MATH__ is not defined with -fno-associative-math. */
/* { dg-do compile } */
/* { dg-options "-fno-associative-math" } */
#ifdef __ASSOCIATIVE_MATH__
#error "__ASSOCIATIVE_MATH__ defined"
#endif
#pragma GCC optimize "-fassociative-math"
#ifndef __ASSOCIATIVE_MATH__
#error "__ASSOCIATIVE_MATH__ not defined"
#endif
#pragma GCC optimize "-fno-associative-math"
#ifdef __ASSOCIATIVE_MATH__
#error "__ASSOCIATIVE_MATH__ defined"
#endif