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]

Re: [v3] Avoid -Wall warnings in the testsuite


On 22 June 2011 23:38, Jonathan Wakely <jwakely.gcc@gmail.com> wrote:
> On 22 June 2011 22:48, Paolo Carlini <paolo.carlini@oracle.com> wrote:
>> ... all, besides that corresponding to c++/49508.
>>
>> Committed to mainline.
>>
>> Thanks,
>> Paolo.
>>
>> //////////////////
>>
>
> Oops, this bit is my bad, I'll fix it:
>
> Index: testsuite/20_util/bind/socket.cc
> ===================================================================
> --- testsuite/20_util/bind/socket.cc ? ?(revision 175315)
> +++ testsuite/20_util/bind/socket.cc ? ?(working copy)
> @@ -35,7 +35,7 @@
> ?{
> ? int fd = 1;
> ? my_sockaddr sa; ? ? ? ? ? // N.B. non-const
> - ?size_t len = sizeof(sa); ?// N.B. size_t not socklen_t
> + ?size_t len __attribute__((unused)) = sizeof(sa); // N.B. size_t not socklen_t
> ? return bind(fd, &sa, sizeof(sa));
> ?}
>
> I meant to use len, so the attribute isn't needed


2011-06-22  Jonathan Wakely  <jwakely.gcc@gmail.com>

        * testsuite/20_util/bind/socket.cc: Use variable and remove attribute.

Tested (this test only) on x86_64-linux and committed to trunk.

Index: testsuite/20_util/bind/socket.cc
===================================================================
--- testsuite/20_util/bind/socket.cc    (revision 175321)
+++ testsuite/20_util/bind/socket.cc    (working copy)
@@ -35,7 +35,7 @@
 {
   int fd = 1;
   my_sockaddr sa;           // N.B. non-const
-  size_t len __attribute__((unused)) = sizeof(sa); // N.B. size_t not socklen_t
-  return bind(fd, &sa, sizeof(sa));
+  size_t len = sizeof(sa);  // N.B. size_t not my_socklen_t
+  return bind(fd, &sa, len);
 }


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