public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "pascal_cuoq at hotmail dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/96788] "integer constant is so large that it is unsigned" warning is incorrect
Date: Thu, 19 Nov 2020 23:04:29 +0000	[thread overview]
Message-ID: <bug-96788-4-Z7GYNAhCme@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-96788-4@http.gcc.gnu.org/bugzilla/>

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96788

Pascal Cuoq <pascal_cuoq at hotmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pascal_cuoq at hotmail dot com

--- Comment #6 from Pascal Cuoq <pascal_cuoq at hotmail dot com> ---
Joseph Myers wrote:
> The warnings are attempting to cover both the C90 
> case where a decimal constant too large for signed long can be unsigned 
> long, and the case of a constant too large for intmax_t.

In the case of the constant 10000000000000000000, each of the two kind of
warnings, “ integer constant is so large that it is unsigned” and “this decimal
constant is unsigned only in ISO C90” can be misleading.

Consider the compilation unit:

int x;

void f(void) {
    x = -10000000000000000000 < 0;
}

1/ Misleading warning “this decimal constant is unsigned only in ISO C90”

Compiler Explorer link: https://gcc.godbolt.org/z/4Eze1f

Using GCC 10.2 targeting x86, the compilation options “-O -m32 -std=c89” make
GCC compile f as below, and emit the warning “this decimal constant is unsigned
only in ISO C90”

f:
        movl    $0, x
        ret

Actually, changing the C dialect to C99 does not make the constant not
unsigned, since GCC emits the same assembly code for f (setting x to 0) with
“-O -m32 -std=c99”

2/ Misleading warning “integer constant is so large that it is unsigned”

Compiler Explorer link: https://gcc.godbolt.org/z/MGjn5G

Using GCC 10.2 targeting x86, the compilation options “-O -m64 -std=c99” make
GCC compile f as below, and emit the warning “integer constant is so large that
it is unsigned”.

f:
        movl    $1, x(%rip)
        ret

The constant is not unsigned. If it were, the function f would not set x to 1.

  parent reply	other threads:[~2020-11-19 23:04 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-26  0:41 [Bug c/96788] New: " richard-gccbugzilla at metafoo dot co.uk
2020-08-26  0:52 ` [Bug c/96788] " pinskia at gcc dot gnu.org
2020-08-26  8:38 ` redi at gcc dot gnu.org
2020-08-26 18:47 ` richard-gccbugzilla at metafoo dot co.uk
2020-08-26 18:49 ` richard-gccbugzilla at metafoo dot co.uk
2020-08-26 22:55 ` joseph at codesourcery dot com
2020-11-19 23:04 ` pascal_cuoq at hotmail dot com [this message]
2023-08-08 10:18 ` redi at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-96788-4-Z7GYNAhCme@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).