This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH] Add C99 FP_FAST_FMA{,F,L} macros to math.h
- From: Ulrich Drepper <drepper at gmail dot com>
- To: Michael Meissner <meissner at linux dot vnet dot ibm dot com>
- Cc: libc-alpha at sourceware dot org
- Date: Sat, 16 Oct 2010 13:46:59 -0400
- Subject: Re: [PATCH] Add C99 FP_FAST_FMA{,F,L} macros to math.h
- References: <20101015203651.GA14249@hungry-tiger.westford.ibm.com>
On Fri, Oct 15, 2010 at 16:36, Michael Meissner
<meissner@linux.vnet.ibm.com> wrote:
> + #if __FP_FAST_FMA
> + #define FP_FAST_FMA 1
> + #endif
> +
> + #if __FP_FAST_FMAF
> + #define FP_FAST_FMAF 1
> + #endif
> +
> + #if __FP_FAST_FMAL
> + #define FP_FAST_FMAL 1
> + #endif
The indentation is wrong. Nested preprocessor directives need spaces
after the #.