about summary refs log tree commit diff
path: root/soft-fp/op-4.h
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-10-12 14:15:30 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-10-12 14:15:30 +0000
commit71b4dea7dc120b96b92235db88f7607cbc3c3112 (patch)
tree02f71e6739c3b899ad18522c710922f2fdbc0b5a /soft-fp/op-4.h
parent5560275828a1a8f3614b87999c9fd2831d0b232d (diff)
downloadglibc-71b4dea7dc120b96b92235db88f7607cbc3c3112.tar.gz
glibc-71b4dea7dc120b96b92235db88f7607cbc3c3112.tar.xz
glibc-71b4dea7dc120b96b92235db88f7607cbc3c3112.zip
soft-fp: fix preprocessor indentation.
Diffstat (limited to 'soft-fp/op-4.h')
-rw-r--r--soft-fp/op-4.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/soft-fp/op-4.h b/soft-fp/op-4.h
index 9086ba71c4..db4197d44f 100644
--- a/soft-fp/op-4.h
+++ b/soft-fp/op-4.h
@@ -537,7 +537,7 @@
   (X##_f[3] = I3, X##_f[2] = I2, X##_f[1] = I1, X##_f[0] = I0)
 
 #ifndef __FP_FRAC_ADD_3
-#define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0)		\
+# define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0)		\
   do {								\
     _FP_W_TYPE __FP_FRAC_ADD_3_c1, __FP_FRAC_ADD_3_c2;		\
     r0 = x0 + y0;						\
@@ -551,7 +551,7 @@
 #endif
 
 #ifndef __FP_FRAC_ADD_4
-#define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0)	\
+# define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0)	\
   do {								\
     _FP_W_TYPE _c1, _c2, _c3;					\
     r0 = x0 + y0;						\
@@ -569,7 +569,7 @@
 #endif
 
 #ifndef __FP_FRAC_SUB_3
-#define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0)		\
+# define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0)		\
   do {								\
     _FP_W_TYPE _c1, _c2;					\
     r0 = x0 - y0;						\
@@ -583,7 +583,7 @@
 #endif
 
 #ifndef __FP_FRAC_SUB_4
-#define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0)	\
+# define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0)	\
   do {								\
     _FP_W_TYPE _c1, _c2, _c3;					\
     r0 = x0 - y0;						\
@@ -601,7 +601,7 @@
 #endif
 
 #ifndef __FP_FRAC_DEC_3
-#define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0)				\
+# define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0)				\
   do {									\
     UWtype _t0, _t1, _t2;						\
     _t0 = x0, _t1 = x1, _t2 = x2;					\
@@ -610,7 +610,7 @@
 #endif
 
 #ifndef __FP_FRAC_DEC_4
-#define __FP_FRAC_DEC_4(x3,x2,x1,x0,y3,y2,y1,y0)			\
+# define __FP_FRAC_DEC_4(x3,x2,x1,x0,y3,y2,y1,y0)			\
   do {									\
     UWtype _t0, _t1, _t2, _t3;						\
     _t0 = x0, _t1 = x1, _t2 = x2, _t3 = x3;				\
@@ -619,7 +619,7 @@
 #endif
 
 #ifndef __FP_FRAC_ADDI_4
-#define __FP_FRAC_ADDI_4(x3,x2,x1,x0,i)					\
+# define __FP_FRAC_ADDI_4(x3,x2,x1,x0,i)				\
   do {									\
     UWtype _t;								\
     _t = ((x0 += i) < i);						\