summaryrefslogtreecommitdiff
path: root/core/riscv-rv32i/math.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/riscv-rv32i/math.c')
-rw-r--r--core/riscv-rv32i/math.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/riscv-rv32i/math.c b/core/riscv-rv32i/math.c
index 591a67eb8f..425814f185 100644
--- a/core/riscv-rv32i/math.c
+++ b/core/riscv-rv32i/math.c
@@ -1,4 +1,4 @@
-/* Copyright 2020 The Chromium OS Authors. All rights reserved.
+/* Copyright 2020 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -9,10 +9,7 @@
/* Single precision floating point square root. */
float sqrtf(float x)
{
- asm volatile (
- "fsqrt.s %0, %1"
- : "=f" (x)
- : "f" (x));
+ asm volatile("fsqrt.s %0, %1" : "=f"(x) : "f"(x));
return x;
}