mirror of
https://github.com/apache/nuttx.git
synced 2026-05-19 20:06:24 +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 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;
|
||||
}
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
float sqrtf(float x)
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user