Skip to content

Commit 3290d4e

Browse files
committed
format
Signed-off-by: JackAKirk <[email protected]>
1 parent d5f28d2 commit 3290d4e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

sycl/include/sycl/builtins.hpp

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ __SYCL_MATH_FUNCTION_OVERLOAD(trunc)
101101

102102
#undef __SYCL_MATH_FUNCTION_OVERLOAD
103103

104-
// __SYCL_MATH_FUNCTION_OVERLOAD_FM cases use corresponding native
104+
// __SYCL_MATH_FUNCTION_OVERLOAD_FM cases are replaced by corresponding native
105105
// implementations when the -ffast-math flag is used with float.
106106
#define __SYCL_MATH_FUNCTION_OVERLOAD_FM(NAME) \
107107
template <typename T, size_t N> \
@@ -189,14 +189,15 @@ inline __SYCL_ALWAYS_INLINE
189189
return res; \
190190
}
191191

192-
__SYCL_MATH_FUNCTION_3_OVERLOAD(mad) __SYCL_MATH_FUNCTION_3_OVERLOAD(mix)
193-
__SYCL_MATH_FUNCTION_3_OVERLOAD(fma)
192+
__SYCL_MATH_FUNCTION_3_OVERLOAD(mad)
193+
__SYCL_MATH_FUNCTION_3_OVERLOAD(mix)
194+
__SYCL_MATH_FUNCTION_3_OVERLOAD(fma)
194195

195196
#undef __SYCL_MATH_FUNCTION_3_OVERLOAD
196197

197-
// svgenfloat acos (svgenfloat x)
198-
template <typename T>
199-
detail::enable_if_t<detail::is_svgenfloat<T>::value, T> acos(T x) __NOEXC {
198+
// svgenfloat acos (svgenfloat x)
199+
template <typename T>
200+
detail::enable_if_t<detail::is_svgenfloat<T>::value, T> acos(T x) __NOEXC {
200201
return __sycl_std::__invoke_acos<T>(x);
201202
}
202203

0 commit comments

Comments
 (0)