about summary refs log tree commit diff
path: root/ports/sysdeps/aarch64/fpu/s_fma.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sysdeps/aarch64/fpu/s_fma.c')
-rw-r--r--ports/sysdeps/aarch64/fpu/s_fma.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ports/sysdeps/aarch64/fpu/s_fma.c b/ports/sysdeps/aarch64/fpu/s_fma.c
index 7dc70739ac..62b06428a3 100644
--- a/ports/sysdeps/aarch64/fpu/s_fma.c
+++ b/ports/sysdeps/aarch64/fpu/s_fma.c
@@ -19,16 +19,16 @@
 #include <math.h>
 
 #ifndef FUNC
-#define FUNC fma
+# define FUNC fma
 #endif
 
 #ifndef TYPE
-#define TYPE double
-#define REGS "d"
+# define TYPE double
+# define REGS "d"
 #else
-#ifndef REGS
-#error REGS not defined
-#endif
+# ifndef REGS
+#  error REGS not defined
+# endif
 #endif
 
 #define __CONCATX(a,b) __CONCAT(a,b)