File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
flang/include/flang/Tools Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -29,19 +29,15 @@ namespace Fortran::tools {
29
29
30
30
// Figure out if we can support F128: see
31
31
// flang/runtime/Float128Math/math-entries.h
32
- // clang-format off
33
32
#ifdef FLANG_RUNTIME_F128_MATH_LIB
34
33
// we can use libquadmath wrappers
35
34
constexpr bool f128Support = true ;
36
- #else
37
- #if LDBL_MANT_DIG == 113
35
+ #elif LDBL_MANT_DIG == 113
38
36
// we can use libm wrappers
39
37
constexpr bool f128Support = true ;
40
- #else
38
+ #else
41
39
constexpr bool f128Support = false ;
42
- #endif // LDBL_MANT_DIG
43
- #endif // FLANG_RUNTIME_F128_MATH_LIB
44
- // clang-format on
40
+ #endif
45
41
46
42
if constexpr (!f128Support)
47
43
targetCharacteristics.DisableType (Fortran::common::TypeCategory::Real, 16 );
You can’t perform that action at this time.
0 commit comments