Skip to content

Commit cdf231a

Browse files
committed
clang formatt
1 parent 5a5136c commit cdf231a

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
@@ -42,14 +42,14 @@ LLVM_LIBC_FUNCTION(float16, asinf16, (float16 x)) {
4242

4343
return x;
4444
}
45-
45+
4646
// 1 < |x| <= +/-inf
4747
fputil::raise_except_if_required(FE_INVALID);
4848
fputil::set_errno_if_required(EDOM);
49-
49+
5050
return FPBits::quiet_nan().get_val();
5151
}
52-
52+
5353
float xsq = xf * xf;
5454

5555
// |x| <= 0x1p-1, |x| <= 0.5

0 commit comments

Comments
 (0)