public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/60083] New: Duplicate conversion warnings from negative integer to unsigned type (gcc-4.3 emits only one warning)
@ 2014-02-05 17:58 chengniansun at gmail dot com
  2014-02-07 21:20 ` [Bug c/60083] " chengniansun at gmail dot com
  0 siblings, 1 reply; 2+ messages in thread
From: chengniansun at gmail dot com @ 2014-02-05 17:58 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60083

            Bug ID: 60083
           Summary: Duplicate conversion warnings from negative integer to
                    unsigned type (gcc-4.3 emits only one warning)
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: chengniansun at gmail dot com

I have the following code, and gcc-trunk emits duplicate warnings on the
implicit conversion from negative long long to unsigned short. 

Moreover, if I turn on -O1, gcc emits only one warning, but the message changes
to "large integer implicitly truncated to unsigned type".

Lastly, gcc-4.3 only emits one warning for this conversion. 


$: cat s.c
int *const a = 0;
unsigned fn1() {
  unsigned short s = ~0x4578ADBCAA1DE677LL ^ a == 0;
  return s;
}
$: gcc-trunk -c -Wconversion s.c
s.c: In function ‘fn1’:
s.c:3:22: warning: negative integer implicitly converted to unsigned type
[-Wsign-conversion]
   unsigned short s = ~0x4578ADBCAA1DE677LL ^ a == 0;
                      ^
s.c:3:22: warning: negative integer implicitly converted to unsigned type
[-Wsign-conversion]
$: gcc-trunk -c -O1 -Wconversion s.c
s.c: In function ‘fn1’:
s.c:3:22: warning: large integer implicitly truncated to unsigned type
[-Woverflow]
   unsigned short s = ~0x4578ADBCAA1DE677LL ^ a == 0;
                      ^
$: gcc-4.3 -c -O1 -Wconversion s.c
s.c: In function ‘fn1’:
s.c:3: warning: large integer implicitly truncated to unsigned type
$:
>From gcc-bugs-return-442718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 05 18:00:40 2014
Return-Path: <gcc-bugs-return-442718-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 11695 invoked by alias); 5 Feb 2014 18:00:40 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 11627 invoked by uid 48); 5 Feb 2014 18:00:36 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/57748] [4.7/4.8/4.9 Regression] ICE when expanding assignment to unaligned zero-sized array
Date: Wed, 05 Feb 2014 18:00:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: middle-end
X-Bugzilla-Version: 4.8.0
X-Bugzilla-Keywords: ice-on-valid-code, wrong-code
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P2
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.8.3
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields:
Message-ID: <bug-57748-4-T8hBFHrL9S@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-57748-4@http.gcc.gnu.org/bugzilla/>
References: <bug-57748-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-02/txt/msg00475.txt.bz2
Content-length: 219

http://gcc.gnu.org/bugzilla/show_bug.cgi?idW748

--- Comment #54 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
(In reply to Marek Polacek from comment #53)
> So fixed on the trunk?

yes, fixed on trunk.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [Bug c/60083] Duplicate conversion warnings from negative integer to unsigned type (gcc-4.3 emits only one warning)
  2014-02-05 17:58 [Bug c/60083] New: Duplicate conversion warnings from negative integer to unsigned type (gcc-4.3 emits only one warning) chengniansun at gmail dot com
@ 2014-02-07 21:20 ` chengniansun at gmail dot com
  0 siblings, 0 replies; 2+ messages in thread
From: chengniansun at gmail dot com @ 2014-02-07 21:20 UTC (permalink / raw)
  To: gcc-bugs

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=60083

--- Comment #1 from Chengnian Sun <chengniansun at gmail dot com> ---
I think the following case is similar to the reported case. The only difference
is the message content. The following case also triggers "gcc -O0" to emit two
duplicate warnings. But "gcc -O1" emits only one warning.

$: cat s.c
extern short fn2(short, short);
unsigned long g;
void fn1() {
  int const l = 0;
  fn2(((g = l != 0) < 10LL) | 91608LL, 0);
}
$: gcc-trunk -c -Wconversion -std=c99 s.c
s.c: In function ‘fn1’:
s.c:5:7: warning: conversion to ‘short int’ alters ‘long long int’ constant
value [-Wconversion]
   fn2(((g = l != 0) < 10LL) | 91608LL, 0);
       ^
s.c:5:7: warning: conversion to ‘short int’ alters ‘long long int’ constant
value [-Wconversion]
$: gcc-trunk -c -Wconversion -std=c99 s.c -O1
s.c: In function ‘fn1’:
s.c:5:7: warning: conversion to ‘short int’ from ‘long long int’ may alter its
value [-Wconversion]
   fn2(((g = l != 0) < 10LL) | 91608LL, 0);
       ^
$:
>From gcc-bugs-return-442997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Fri Feb 07 21:22:00 2014
Return-Path: <gcc-bugs-return-442997-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 24367 invoked by alias); 7 Feb 2014 21:22:00 -0000
Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm
Precedence: bulk
List-Id: <gcc-bugs.gcc.gnu.org>
List-Archive: <http://gcc.gnu.org/ml/gcc-bugs/>
List-Post: <mailto:gcc-bugs@gcc.gnu.org>
List-Help: <mailto:gcc-bugs-help@gcc.gnu.org>
Sender: gcc-bugs-owner@gcc.gnu.org
Delivered-To: mailing list gcc-bugs@gcc.gnu.org
Received: (qmail 24343 invoked by uid 48); 7 Feb 2014 21:21:56 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/60083] Duplicate conversion warnings from negative integer to unsigned type (gcc-4.3 emits only one warning)
Date: Fri, 07 Feb 2014 21:22:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: c
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: mpolacek at gcc dot gnu.org
X-Bugzilla-Status: NEW
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: bug_status cf_reconfirmed_on cc everconfirmed
Message-ID: <bug-60083-4-nEzx7rfnsK@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60083-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60083-4@http.gcc.gnu.org/bugzilla/>
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/
Auto-Submitted: auto-generated
MIME-Version: 1.0
X-SW-Source: 2014-02/txt/msg00754.txt.bz2
Content-length: 589

http://gcc.gnu.org/bugzilla/show_bug.cgi?id`083

Marek Polacek <mpolacek at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-02-07
                 CC|                            |mpolacek at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #2 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Yeah, I bet we'll have tons of those ;/.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-02-07 21:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-02-05 17:58 [Bug c/60083] New: Duplicate conversion warnings from negative integer to unsigned type (gcc-4.3 emits only one warning) chengniansun at gmail dot com
2014-02-07 21:20 ` [Bug c/60083] " chengniansun at gmail dot com

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).