public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX
@ 2014-01-10 10:19 vincent-gcc at vinc17 dot net
  2014-02-05 10:49 ` [Bug c/59753] " mpolacek at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: vincent-gcc at vinc17 dot net @ 2014-01-10 10:19 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 59753
           Summary: Missing -Woverflow warning with signed constant
                    conversion between T_MAX+1 and UT_MAX
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: vincent-gcc at vinc17 dot net

When writing "int d = some_signed_constant;", one expects a -Woverflow warning
if some_signed_constant > INT_MAX, but one actually gets a warning only if
some_signed_constant > UINT_MAX. Similarly for other types, such as char and
short.

For instance, with the following program, one expects 6 warnings, but one only
gets 2.

#include <stdio.h>
int main (void)
{
  short a = 32768;
  short b = 65535;
  short c = 65536;
  int d = 2147483648;
  int e = 4294967295;
  int f = 4294967296;
  printf ("%d %d %d %d %d %d\n", a, b, c, d, e, f);
  return 0;
}

$ gcc-snapshot tst.c -o tst
tst.c: In function 'main':
tst.c:6:3: warning: overflow in implicit constant conversion [-Woverflow]
   short c = 65536;
   ^
tst.c:9:3: warning: overflow in implicit constant conversion [-Woverflow]
   int f = 4294967296;
   ^

This occurs with:
gcc (Debian 20131201-1) 4.9.0 20131201 (experimental) [trunk revision 205573]
and older versions (4.7 and 4.8 at least).


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

* [Bug c/59753] Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX
  2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
@ 2014-02-05 10:49 ` mpolacek at gcc dot gnu.org
  2014-02-05 11:40 ` vincent-gcc at vinc17 dot net
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2014-02-05 10:49 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |mpolacek at gcc dot gnu.org
         Resolution|---                         |WORKSFORME

--- Comment #1 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
-Wconversion catches all of these.


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

* [Bug c/59753] Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX
  2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
  2014-02-05 10:49 ` [Bug c/59753] " mpolacek at gcc dot gnu.org
@ 2014-02-05 11:40 ` vincent-gcc at vinc17 dot net
  2014-02-05 15:51 ` mpolacek at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: vincent-gcc at vinc17 dot net @ 2014-02-05 11:40 UTC (permalink / raw)
  To: gcc-bugs

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

Vincent Lefèvre <vincent-gcc at vinc17 dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|WORKSFORME                  |---

--- Comment #2 from Vincent Lefèvre <vincent-gcc at vinc17 dot net> ---
-Wconversion is used to warn about possibly-suspicious valid code such as:

  unsigned ui = -1;

(see the gcc man page), not for overflows. At least there is an inconsistency
in the use of warnings. There is no reason why 65535 and 65536 should be
treated differently when assigned to a short: neither value is representable in
a short.
>From gcc-bugs-return-442634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 05 11:42:12 2014
Return-Path: <gcc-bugs-return-442634-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 7778 invoked by alias); 5 Feb 2014 11:42:12 -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 7693 invoked by uid 48); 5 Feb 2014 11:42:09 -0000
From: "rguenth at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug tree-optimization/60042] vectorizer still does too many dependence tests for himeno:jacobi
Date: Wed, 05 Feb 2014 11:42:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: tree-optimization
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords: missed-optimization
X-Bugzilla-Severity: normal
X-Bugzilla-Who: rguenth at gcc dot gnu.org
X-Bugzilla-Status: ASSIGNED
X-Bugzilla-Priority: P3
X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org
X-Bugzilla-Target-Milestone: ---
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: dependson
Message-ID: <bug-60042-4-Itia2QXHxQ@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60042-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60042-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/msg00391.txt.bz2
Content-length: 425

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

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Depends on|                            |23855

--- Comment #8 from Richard Biener <rguenth at gcc dot gnu.org> ---
For analysis of the DRs in outer loops we need to fix PR23855.


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

* [Bug c/59753] Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX
  2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
  2014-02-05 10:49 ` [Bug c/59753] " mpolacek at gcc dot gnu.org
  2014-02-05 11:40 ` vincent-gcc at vinc17 dot net
@ 2014-02-05 15:51 ` mpolacek at gcc dot gnu.org
  2014-02-05 16:40 ` [Bug c/59753] -Woverflow warning inconsistency with signed constant conversion between T_MAX+1 and UT_MAX vs larger than UT_MAX vincent-gcc at vinc17 dot net
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: mpolacek at gcc dot gnu.org @ 2014-02-05 15:51 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |WORKSFORME

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
OK, if you use -Wpedantic, you'll get all the overflow warnings even without
-Wconversion.


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

* [Bug c/59753] -Woverflow warning inconsistency with signed constant conversion between T_MAX+1 and UT_MAX vs larger than UT_MAX
  2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
                   ` (2 preceding siblings ...)
  2014-02-05 15:51 ` mpolacek at gcc dot gnu.org
@ 2014-02-05 16:40 ` vincent-gcc at vinc17 dot net
  2014-02-05 16:47 ` manu at gcc dot gnu.org
  2014-02-05 17:31 ` vincent-gcc at vinc17 dot net
  5 siblings, 0 replies; 7+ messages in thread
From: vincent-gcc at vinc17 dot net @ 2014-02-05 16:40 UTC (permalink / raw)
  To: gcc-bugs

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

Vincent Lefèvre <vincent-gcc at vinc17 dot net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |UNCONFIRMED
         Resolution|WORKSFORME                  |---
            Summary|Missing -Woverflow warning  |-Woverflow warning
                   |with signed constant        |inconsistency with signed
                   |conversion between T_MAX+1  |constant conversion between
                   |and UT_MAX                  |T_MAX+1 and UT_MAX vs
                   |                            |larger than UT_MAX

--- Comment #4 from Vincent Lefèvre <vincent-gcc at vinc17 dot net> ---
There's still an inconsistency without -Wpedantic, which is the point of this
bug. I've changed the bug title to:

  -Woverflow warning inconsistency with signed constant conversion between
T_MAX+1 and UT_MAX vs larger than UT_MAX

If this inconsistency is intentional, then it should be documented. The current
behavior doesn't match the documentation:

    -Wno-overflow
        Do not warn about compile-time overflow in constant expressions.

I fail to see why there should be a warning for

  short c = 65536;

but not for

  short b = 65535;

BTW, there's actually no overflow in the constant expressions themselves, just
in the assignments.
>From gcc-bugs-return-442704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 05 16:45:24 2014
Return-Path: <gcc-bugs-return-442704-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 25019 invoked by alias); 5 Feb 2014 16:45:23 -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 24988 invoked by uid 48); 5 Feb 2014 16:45:20 -0000
From: "ebotcazou at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/60078] acats c761007 fails on ARM
Date: Wed, 05 Feb 2014 16:45:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: ebotcazou at gcc dot gnu.org
X-Bugzilla-Status: WAITING
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-60078-4-mh7ooRu9uv@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60078-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60078-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/msg00461.txt.bz2
Content-length: 700

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

Eric Botcazou <ebotcazou at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2014-02-05
                 CC|                            |ebotcazou at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #1 from Eric Botcazou <ebotcazou at gcc dot gnu.org> ---
Is that on real hardware or simulator?  This test is one of the infamous tests
that require very solid concurrency support from the environment.


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

* [Bug c/59753] -Woverflow warning inconsistency with signed constant conversion between T_MAX+1 and UT_MAX vs larger than UT_MAX
  2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
                   ` (3 preceding siblings ...)
  2014-02-05 16:40 ` [Bug c/59753] -Woverflow warning inconsistency with signed constant conversion between T_MAX+1 and UT_MAX vs larger than UT_MAX vincent-gcc at vinc17 dot net
@ 2014-02-05 16:47 ` manu at gcc dot gnu.org
  2014-02-05 17:31 ` vincent-gcc at vinc17 dot net
  5 siblings, 0 replies; 7+ messages in thread
From: manu at gcc dot gnu.org @ 2014-02-05 16:47 UTC (permalink / raw)
  To: gcc-bugs

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

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #5 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Vincent Lefèvre from comment #4)
> There's still an inconsistency without -Wpedantic, which is the point of
> this bug. I've changed the bug title to:
> 
>   -Woverflow warning inconsistency with signed constant conversion between
> T_MAX+1 and UT_MAX vs larger than UT_MAX

I seem to remember this inconsistency is due to the exact definition of
overflow given in the standard. But I agree that this is confusing for the rest
of humanity who don't know the standard by heart. Also, the warnings would be
useful by default since they are likely mistakes.

> If this inconsistency is intentional, then it should be documented. The
> current behavior doesn't match the documentation:

Agreed.
>From gcc-bugs-return-442706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 05 16:47:56 2014
Return-Path: <gcc-bugs-return-442706-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 26926 invoked by alias); 5 Feb 2014 16:47:56 -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 26884 invoked by uid 48); 5 Feb 2014 16:47:53 -0000
From: "mpolacek at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/59737] [4.9 Regression] ice from optimize_inline_calls
Date: Wed, 05 Feb 2014 16:47: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.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: P1
X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org
X-Bugzilla-Target-Milestone: 4.9.0
X-Bugzilla-Flags:
X-Bugzilla-Changed-Fields: cc
Message-ID: <bug-59737-4-PL7u2r72Lp@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-59737-4@http.gcc.gnu.org/bugzilla/>
References: <bug-59737-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/msg00463.txt.bz2
Content-length: 406

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mpolacek at gcc dot gnu.org

--- Comment #3 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Started with r206042.


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

* [Bug c/59753] -Woverflow warning inconsistency with signed constant conversion between T_MAX+1 and UT_MAX vs larger than UT_MAX
  2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
                   ` (4 preceding siblings ...)
  2014-02-05 16:47 ` manu at gcc dot gnu.org
@ 2014-02-05 17:31 ` vincent-gcc at vinc17 dot net
  5 siblings, 0 replies; 7+ messages in thread
From: vincent-gcc at vinc17 dot net @ 2014-02-05 17:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Vincent Lefèvre <vincent-gcc at vinc17 dot net> ---
(In reply to Manuel López-Ibáñez from comment #5)
> (In reply to Vincent Lefèvre from comment #4)
> > There's still an inconsistency without -Wpedantic, which is the point of
> > this bug. I've changed the bug title to:
> > 
> >   -Woverflow warning inconsistency with signed constant conversion between
> > T_MAX+1 and UT_MAX vs larger than UT_MAX
> 
> I seem to remember this inconsistency is due to the exact definition of
> overflow given in the standard.

Which definition?

As I understand the standard, there's no overflow in the integer constant:
65535 and 65536 are both of type int on the machine in question (C99,
6.4.4.1p5).

Then, in the assignment, there's a conversion of the value to type short (C99,
6.5.16.1p2). Concerning this conversion, since short is a signed integer type
and neither 65535 nor 65536 is representable in the type short, the behavior is
implementation-defined (C99, 6.3.1.3p3). I still don't see why the
inconsistency would be due to the definition of overflow.
>From gcc-bugs-return-442712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org Wed Feb 05 17:43:54 2014
Return-Path: <gcc-bugs-return-442712-listarch-gcc-bugs=gcc.gnu.org@gcc.gnu.org>
Delivered-To: listarch-gcc-bugs@gcc.gnu.org
Received: (qmail 757 invoked by alias); 5 Feb 2014 17:43:53 -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 724 invoked by uid 48); 5 Feb 2014 17:43:51 -0000
From: "bernd.edlinger at hotmail dot de" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug ada/60078] acats c761007 fails on ARM
Date: Wed, 05 Feb 2014 17:43:00 -0000
X-Bugzilla-Reason: CC
X-Bugzilla-Type: changed
X-Bugzilla-Watch-Reason: None
X-Bugzilla-Product: gcc
X-Bugzilla-Component: ada
X-Bugzilla-Version: 4.9.0
X-Bugzilla-Keywords:
X-Bugzilla-Severity: normal
X-Bugzilla-Who: bernd.edlinger at hotmail dot de
X-Bugzilla-Status: WAITING
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:
Message-ID: <bug-60078-4-cEi9OkKj08@http.gcc.gnu.org/bugzilla/>
In-Reply-To: <bug-60078-4@http.gcc.gnu.org/bugzilla/>
References: <bug-60078-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/msg00469.txt.bz2
Content-length: 225

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

--- Comment #2 from Bernd Edlinger <bernd.edlinger at hotmail dot de> ---
it's a real hardware (Altera CyloneV SoC Eva-Board)
with dual core ARMv7
running linux and eglibc


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

end of thread, other threads:[~2014-02-05 17:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-10 10:19 [Bug c/59753] New: Missing -Woverflow warning with signed constant conversion between T_MAX+1 and UT_MAX vincent-gcc at vinc17 dot net
2014-02-05 10:49 ` [Bug c/59753] " mpolacek at gcc dot gnu.org
2014-02-05 11:40 ` vincent-gcc at vinc17 dot net
2014-02-05 15:51 ` mpolacek at gcc dot gnu.org
2014-02-05 16:40 ` [Bug c/59753] -Woverflow warning inconsistency with signed constant conversion between T_MAX+1 and UT_MAX vs larger than UT_MAX vincent-gcc at vinc17 dot net
2014-02-05 16:47 ` manu at gcc dot gnu.org
2014-02-05 17:31 ` vincent-gcc at vinc17 dot net

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).