1 /* 2 * Helper macros for double-precision pairwise Horner polynomial evaluation. 3 * 4 * Copyright (c) 2022-2023, Arm Limited. 5 * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception 6 */ 7 8 #if V_SUPPORTED 9 #define FMA v_fma_f64 10 #else 11 #define FMA fma 12 #endif 13 14 #include "pairwise_horner_wrap.h" 15