git: 066dab17e7a4 - main - riscv: Fix whitespace issues in fabs added in 524b018d2004
Jessica Clarke
jrtc27 at FreeBSD.org
Mon Mar 1 15:19:53 UTC 2021
The branch main has been updated by jrtc27:
URL: https://cgit.FreeBSD.org/src/commit/?id=066dab17e7a4a78d43dbcef8119960ddc8090a73
commit 066dab17e7a4a78d43dbcef8119960ddc8090a73
Author: Jessica Clarke <jrtc27 at FreeBSD.org>
AuthorDate: 2021-03-01 14:01:13 +0000
Commit: Jessica Clarke <jrtc27 at FreeBSD.org>
CommitDate: 2021-03-01 15:19:36 +0000
riscv: Fix whitespace issues in fabs added in 524b018d2004
---
lib/libc/riscv/gen/fabs.S | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/libc/riscv/gen/fabs.S b/lib/libc/riscv/gen/fabs.S
index 09042af3b4c0..036d50eddf90 100644
--- a/lib/libc/riscv/gen/fabs.S
+++ b/lib/libc/riscv/gen/fabs.S
@@ -43,8 +43,8 @@ ENTRY(fabs)
#ifdef __riscv_float_abi_double
fabs.d fa0, fa0
#else
- slli a0,a0,1
- srli a0,a0,1
+ slli a0, a0, 1
+ srli a0, a0, 1
#endif
ret
END(fabs)
More information about the dev-commits-src-all
mailing list