From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5908 invoked by alias); 23 Jul 2014 22:06:32 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 5873 invoked by uid 89); 23 Jul 2014 22:06:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-pa0-f42.google.com Received: from mail-pa0-f42.google.com (HELO mail-pa0-f42.google.com) (209.85.220.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Wed, 23 Jul 2014 22:06:30 +0000 Received: by mail-pa0-f42.google.com with SMTP id lf10so2562919pab.1 for ; Wed, 23 Jul 2014 15:06:29 -0700 (PDT) X-Received: by 10.70.37.129 with SMTP id y1mr5747297pdj.12.1406153188961; Wed, 23 Jul 2014 15:06:28 -0700 (PDT) Received: from [192.168.1.104] ([223.72.65.93]) by mx.google.com with ESMTPSA id kq7sm3408481pbc.90.2014.07.23.15.06.26 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 23 Jul 2014 15:06:28 -0700 (PDT) Message-ID: <53D031E7.40602@gmail.com> Date: Wed, 23 Jul 2014 22:06:00 -0000 From: Chen Gang User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130625 Thunderbird/17.0.7 MIME-Version: 1.0 To: Michael Eager CC: eager@eagercon.com, binutils@sourceware.org, gdb-patches@sourceware.org Subject: Re: [PATCH] gdb/microblaze-tdep.c: Check whether less than zero in conditional expression References: <53CBCC2F.7040702@gmail.com> <53D01542.9020107@eagerm.com> In-Reply-To: <53D01542.9020107@eagerm.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2014-07/txt/msg00180.txt.bz2 On 07/24/2014 04:04 AM, Michael Eager wrote: > On 07/20/14 07:03, Chen Gang wrote: >> Use typecast 'size_t' on 'reg', not only avoid the related warning, but >> also check whether less than zero -- for 'reg' is type 'int', and sizeof >> (dwarf2_to_reg_map) is less than 0x7fff. >> >> It is quoted in gdb_assert(), so need check 'reg' whether less than zero. >> And the related warning (with '-W'): >> >> ../../binutils-gdb/gdb/microblaze-tdep.c:667:3: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare] >> >> ChangeLog: >> >> * microblaze-tdep.c (microblaze_dwarf2_reg_to_regnum): Check whether >> less tha zero in conditional expression. >> >> >> Signed-off-by: Chen Gang >> --- >> gdb/microblaze-tdep.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/gdb/microblaze-tdep.c b/gdb/microblaze-tdep.c >> index 7e89241..9bec260 100644 >> --- a/gdb/microblaze-tdep.c >> +++ b/gdb/microblaze-tdep.c >> @@ -664,7 +664,7 @@ static int dwarf2_to_reg_map[78] = >> static int >> microblaze_dwarf2_reg_to_regnum (struct gdbarch *gdbarch, int reg) >> { >> - gdb_assert (reg < sizeof (dwarf2_to_reg_map)); >> + gdb_assert ((size_t) reg < sizeof (dwarf2_to_reg_map)); >> return dwarf2_to_reg_map[reg]; >> } > > I don't see anything in the patch which does what you describe, > checking whether reg is less than zero. Converting a signed > integer to an unsigned integer is not a way to check whether > it is less than zero. This is better: > > + gdb_assert (reg >= 0 && (size_t) reg < sizeof (dwarf2_to_reg_map)); > Yeah, it is common statement. It is also OK to me, although after type cast, 'reg >=0' can be omited (it can let code simpler, but let code not quit easy understanding). > I do not see this error message in my build which uses -Wall. > What is your build environment? Which version of GCC? > Originally, I use "CFLAGS=-W -g -O2" pass to configure. And '-W' is different from '-Wall'. '-W' reports real 'all' warnings which can be found by compiler, but '-Wall' reports most valuable warnings. Thanks. -- Chen Gang Open share and attitude like air water and life which God blessed