public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Moore, Mathew L" <MooreML@BATTELLE.ORG>
To: 'Steve Dondley' <s@dondley.com>, gcc-help@gcc.gnu.org
Subject: RE: Bug with unsigned int data type?
Date: Sun, 13 Oct 2002 08:18:00 -0000	[thread overview]
Message-ID: <2F05A390F72A0A409390E016D23E45E8042DBE17@ns-bco-mse4.im.battelle.org> (raw)

If there is no suffix on an integer constant, according to the C99 standard,
it must be converted to the first type on the list {int, long int, long long
int} in which its value can be represented.  So maybe the warning should say
something about the conversion from long long to unsigned?

The C89 standard, which gcc 2.95 probably follows a little more closely, had
the conversion list as {int, long int, unsigned long int}, so maybe then the
warning should go away.  But then again, it might be nice for the programmer
to know when that conversion is occuring.

gcc 3.2 still gives the warning you see.

You can get around that warning by using the suffix on the constant:

n = 2147483648u;

--Matt


> -----Original Message-----
> From: Steve Dondley [mailto:s@dondley.com]
> Sent: Sunday, October 13, 2002 10:29
> To: gcc-help@gcc.gnu.org
> Subject: Bug with unsigned int data type?
> 
> 
> Hi,
> 
> The following two lines...
> 
> unsigned int n;
> n = 2147483648;
> 
> ...generate a "decimal constant is so large thst it is 
> unsigned" warning.
> Shouldn't the declaration of the integer as unsigned avoid 
> this warning?
> I'm using gcc version 2.95.4 on an Intel 32 bit machine.
> 
> Thanks.
> 
> 

             reply	other threads:[~2002-10-13 15:18 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-10-13  8:18 Moore, Mathew L [this message]
  -- strict thread matches above, loose matches on Subject: below --
2002-10-13  7:24 Steve Dondley
2002-10-13  8:06 ` bjorn rohde jensen

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=2F05A390F72A0A409390E016D23E45E8042DBE17@ns-bco-mse4.im.battelle.org \
    --to=mooreml@battelle.org \
    --cc=gcc-help@gcc.gnu.org \
    --cc=s@dondley.com \
    /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).