i386: Add tests for -malign-branch-boundary and -malign-branch
[deliverable/binutils-gdb.git] / libiberty / copysign.c
index d288be239eb45b2cf4def41075a4329d9e036fcc..6793f22e8ccab04a257a0d26958ba5a1983dd0c2 100644 (file)
@@ -132,8 +132,7 @@ typedef union
 #if defined(__IEEE_BIG_ENDIAN) || defined(__IEEE_LITTLE_ENDIAN)
 
 double
-copysign (x, y)
-     double x, y;
+copysign (double x, double y)
 {
   __ieee_double_shape_type a,b;
   b.value = y;  
@@ -145,8 +144,7 @@ copysign (x, y)
 #else
 
 double
-copysign (x, y)
-     double x, y;
+copysign (double x, double y)
 {
   if ((x < 0 && y > 0) || (x > 0 && y < 0))
     return -x;
This page took 0.024185 seconds and 4 git commands to generate.