mirror of
https://github.com/apache/nuttx.git
synced 2026-06-02 01:21:26 +08:00
libs: libc: nxstyle fixes
nxstyle fixes to pass CI Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
committed by
Xiang Xiao
parent
c39339a7a8
commit
e8606942eb
@@ -34,7 +34,7 @@
|
|||||||
float fabsf(float x)
|
float fabsf(float x)
|
||||||
{
|
{
|
||||||
float result;
|
float result;
|
||||||
asm volatile ( "vabs.f32\t%0, %1" : "=t" (result) : "t" (x) );
|
asm volatile ("vabs.f32\t%0, %1" : "=t" (result) : "t" (x));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
float sqrtf(float x)
|
float sqrtf(float x)
|
||||||
{
|
{
|
||||||
float result;
|
float result;
|
||||||
asm volatile ( "vsqrt.f32\t%0, %1" : "=t" (result) : "t" (x) );
|
asm volatile ("vsqrt.f32\t%0, %1" : "=t" (result) : "t" (x));
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user