This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH, darwin: remove unused variable warning


The following patch removes an unused varialble warning when compiling
on powerpc-linux.  Committed as obvious.

Do we have any active Darwin maintainers?


2008-12-08  Ben Elliston  <bje@au.ibm.com>

        * config/rs6000/darwin-ldouble.c (fmsub): Remove unused variable, v.

Index: darwin-ldouble.c
===================================================================
--- darwin-ldouble.c    (revision 142545)
+++ darwin-ldouble.c    (working copy)
@@ -387,7 +387,7 @@ fmsub (double a, double b, double c)
     FP_DECL_Q(V);
     FP_DECL_D(R);
     double r;
-    long double u, v, x, y, z;
+    long double u, x, y, z;
 
     FP_INIT_ROUNDMODE;
     FP_UNPACK_RAW_D (A, a);



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]