Skip to content

Commit 9ccf99f

Browse files
committed
chore: add matching comment for if condition
Signed-off-by: Krishna Pandey <[email protected]>
1 parent c91d831 commit 9ccf99f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libc/utils/MPFRWrapper/MPFRUtils.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,8 @@ explain_binary_operation_one_output_error(Operation,
424424
defined(LIBC_TYPES_FLOAT128_IS_NOT_LONG_DOUBLE)
425425
template void explain_binary_operation_one_output_error(
426426
Operation, const BinaryInput<float128> &, bfloat16, double, RoundingMode);
427-
#endif // LIBC_TYPES_HAS_FLOAT128
427+
#endif // defined(LIBC_TYPES_HAS_FLOAT128) &&
428+
// defined(LIBC_TYPES_FLOAT128_IS_NOT_LONG_DOUBLE)
428429

429430
template <typename InputType, typename OutputType>
430431
void explain_ternary_operation_one_output_error(
@@ -680,7 +681,8 @@ template bool compare_binary_operation_one_output(Operation,
680681
const BinaryInput<float128> &,
681682
bfloat16, double,
682683
RoundingMode);
683-
#endif // LIBC_TYPES_HAS_FLOAT128
684+
#endif // defined(LIBC_TYPES_HAS_FLOAT128) &&
685+
// defined(LIBC_TYPES_FLOAT128_IS_NOT_LONG_DOUBLE)
684686
template <typename InputType, typename OutputType>
685687
bool compare_ternary_operation_one_output(Operation op,
686688
const TernaryInput<InputType> &input,

0 commit comments

Comments
 (0)