Skip to content

Commit 4e4e177

Browse files
committed
fix format
1 parent 8ce9aee commit 4e4e177

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

flang/lib/Evaluate/intrinsics-library.cpp

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -386,22 +386,22 @@ template <>
386386
struct HostRuntimeLibrary<std::complex<float>, LibraryVersion::Libm> {
387387
COMPLEX_SIGNATURES(float)
388388
static constexpr HostRuntimeFunction table[]{
389-
FolderFactory<F, C_COMPLEX_FUNC(cacosf)>::Create("acos"),
390-
FolderFactory<F, C_COMPLEX_FUNC(cacoshf)>::Create("acosh"),
391-
FolderFactory<F, C_COMPLEX_FUNC(casinf)>::Create("asin"),
392-
FolderFactory<F, C_COMPLEX_FUNC(casinhf)>::Create("asinh"),
393-
FolderFactory<F, C_COMPLEX_FUNC(catanf)>::Create("atan"),
394-
FolderFactory<F, C_COMPLEX_FUNC(catanhf)>::Create("atanh"),
395-
FolderFactory<F, C_COMPLEX_FUNC(ccosf)>::Create("cos"),
396-
FolderFactory<F, C_COMPLEX_FUNC(ccoshf)>::Create("cosh"),
397-
FolderFactory<F, C_COMPLEX_FUNC(cexpf)>::Create("exp"),
398-
FolderFactory<F, C_COMPLEX_FUNC(clogf)>::Create("log"),
399-
FolderFactory<F2, C_COMPLEX_FUNC(cpowf)>::Create("pow"),
400-
FolderFactory<F, C_COMPLEX_FUNC(csinf)>::Create("sin"),
401-
FolderFactory<F, C_COMPLEX_FUNC(csinhf)>::Create("sinh"),
402-
FolderFactory<F, C_COMPLEX_FUNC(csqrtf)>::Create("sqrt"),
403-
FolderFactory<F, C_COMPLEX_FUNC(ctanf)>::Create("tan"),
404-
FolderFactory<F, C_COMPLEX_FUNC(ctanhf)>::Create("tanh"),
389+
FolderFactory<F, C_COMPLEX_FUNC(cacosf)>::Create("acos"),
390+
FolderFactory<F, C_COMPLEX_FUNC(cacoshf)>::Create("acosh"),
391+
FolderFactory<F, C_COMPLEX_FUNC(casinf)>::Create("asin"),
392+
FolderFactory<F, C_COMPLEX_FUNC(casinhf)>::Create("asinh"),
393+
FolderFactory<F, C_COMPLEX_FUNC(catanf)>::Create("atan"),
394+
FolderFactory<F, C_COMPLEX_FUNC(catanhf)>::Create("atanh"),
395+
FolderFactory<F, C_COMPLEX_FUNC(ccosf)>::Create("cos"),
396+
FolderFactory<F, C_COMPLEX_FUNC(ccoshf)>::Create("cosh"),
397+
FolderFactory<F, C_COMPLEX_FUNC(cexpf)>::Create("exp"),
398+
FolderFactory<F, C_COMPLEX_FUNC(clogf)>::Create("log"),
399+
FolderFactory<F2, C_COMPLEX_FUNC(cpowf)>::Create("pow"),
400+
FolderFactory<F, C_COMPLEX_FUNC(csinf)>::Create("sin"),
401+
FolderFactory<F, C_COMPLEX_FUNC(csinhf)>::Create("sinh"),
402+
FolderFactory<F, C_COMPLEX_FUNC(csqrtf)>::Create("sqrt"),
403+
FolderFactory<F, C_COMPLEX_FUNC(ctanf)>::Create("tan"),
404+
FolderFactory<F, C_COMPLEX_FUNC(ctanhf)>::Create("tanh"),
405405
};
406406
static constexpr HostRuntimeMap map{table};
407407
static_assert(map.Verify(), "map must be sorted");
@@ -410,22 +410,22 @@ template <>
410410
struct HostRuntimeLibrary<std::complex<double>, LibraryVersion::Libm> {
411411
COMPLEX_SIGNATURES(double)
412412
static constexpr HostRuntimeFunction table[]{
413-
FolderFactory<F, C_COMPLEX_FUNC(cacos)>::Create("acos"),
414-
FolderFactory<F, C_COMPLEX_FUNC(cacosh)>::Create("acosh"),
415-
FolderFactory<F, C_COMPLEX_FUNC(casin)>::Create("asin"),
416-
FolderFactory<F, C_COMPLEX_FUNC(casinh)>::Create("asinh"),
417-
FolderFactory<F, C_COMPLEX_FUNC(catan)>::Create("atan"),
418-
FolderFactory<F, C_COMPLEX_FUNC(catanh)>::Create("atanh"),
419-
FolderFactory<F, C_COMPLEX_FUNC(ccos)>::Create("cos"),
420-
FolderFactory<F, C_COMPLEX_FUNC(ccosh)>::Create("cosh"),
421-
FolderFactory<F, C_COMPLEX_FUNC(cexp)>::Create("exp"),
422-
FolderFactory<F, C_COMPLEX_FUNC(__clog)>::Create("log"),
423-
FolderFactory<F2, C_COMPLEX_FUNC(cpow)>::Create("pow"),
424-
FolderFactory<F, C_COMPLEX_FUNC(csin)>::Create("sin"),
425-
FolderFactory<F, C_COMPLEX_FUNC(csinh)>::Create("sinh"),
426-
FolderFactory<F, C_COMPLEX_FUNC(csqrt)>::Create("sqrt"),
427-
FolderFactory<F, C_COMPLEX_FUNC(ctan)>::Create("tan"),
428-
FolderFactory<F, C_COMPLEX_FUNC(ctanh)>::Create("tanh"),
413+
FolderFactory<F, C_COMPLEX_FUNC(cacos)>::Create("acos"),
414+
FolderFactory<F, C_COMPLEX_FUNC(cacosh)>::Create("acosh"),
415+
FolderFactory<F, C_COMPLEX_FUNC(casin)>::Create("asin"),
416+
FolderFactory<F, C_COMPLEX_FUNC(casinh)>::Create("asinh"),
417+
FolderFactory<F, C_COMPLEX_FUNC(catan)>::Create("atan"),
418+
FolderFactory<F, C_COMPLEX_FUNC(catanh)>::Create("atanh"),
419+
FolderFactory<F, C_COMPLEX_FUNC(ccos)>::Create("cos"),
420+
FolderFactory<F, C_COMPLEX_FUNC(ccosh)>::Create("cosh"),
421+
FolderFactory<F, C_COMPLEX_FUNC(cexp)>::Create("exp"),
422+
FolderFactory<F, C_COMPLEX_FUNC(__clog)>::Create("log"),
423+
FolderFactory<F2, C_COMPLEX_FUNC(cpow)>::Create("pow"),
424+
FolderFactory<F, C_COMPLEX_FUNC(csin)>::Create("sin"),
425+
FolderFactory<F, C_COMPLEX_FUNC(csinh)>::Create("sinh"),
426+
FolderFactory<F, C_COMPLEX_FUNC(csqrt)>::Create("sqrt"),
427+
FolderFactory<F, C_COMPLEX_FUNC(ctan)>::Create("tan"),
428+
FolderFactory<F, C_COMPLEX_FUNC(ctanh)>::Create("tanh"),
429429
};
430430
static constexpr HostRuntimeMap map{table};
431431
static_assert(map.Verify(), "map must be sorted");

0 commit comments

Comments
 (0)