Skip to content

Commit 96ab636

Browse files
committed
clang-format
1 parent dc173e3 commit 96ab636

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libc/src/math/generic/asinf16.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ LLVM_LIBC_FUNCTION(float16, asinf16, (float16 x)) {
3535

3636
// |x| <= 0x1p-1, |x| <= 0.5
3737
if (x_abs <= 0x3800) {
38-
//asinf16(NaN) = NaN
38+
// asinf16(NaN) = NaN
3939
if (xbits.is_nan()) {
4040
if (xbits.is_signaling_nan()) {
4141
fputil::raise_except_if_required(FE_INVALID);
42-
return FPBits::quiet_nan().get_val();
42+
return FPBits::quiet_nan().get_val();
4343
}
4444

4545
return x;
4646
}
47-
47+
4848
// asinf16(+/-0) = +/-0
4949
if (LIBC_UNLIKELY(x_abs == 0))
5050
return x;

0 commit comments

Comments
 (0)