unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Paul Eggert <eggert@cs.ucla.edu>
To: Dmitry Antipov <dmantipov@yandex.ru>,
	 Stefan Monnier <monnier@IRO.UMontreal.CA>
Cc: Emacs development discussions <emacs-devel@gnu.org>
Subject: Re: Subtle error defining VALMASK?
Date: Wed, 10 Sep 2014 07:58:29 -0700	[thread overview]
Message-ID: <54106715.4010005@cs.ucla.edu> (raw)
In-Reply-To: <541058E7.2000700@yandex.ru>

Dmitry Antipov wrote:
> In:
>
> #define VALMASK_val (USE_LSB_TAG ? - (1 << GCTYPEBITS) : VAL_MAX)
>
> shouldn't it be
>
> #define VALMASK_val (USE_LSB_TAG ? - (1L << GCTYPEBITS) : VAL_MAX)
>
> or, if --with-wide-int on a 32-bit system:
>
> #define VALMASK_val (USE_LSB_TAG ? - (1LL << GCTYPEBITS) : VAL_MAX)

There's no error here.  All three definitions are equivalent because - 
(1 << GCTYPEBITS) equals -8, which sign-extends to the width of VAL_MAX. 
  When it doesn't matter, it's better to avoid length suffixes on 
integer constants.

There is another programming style, where authors take care to write 
exact suffixes on constants, e.g., 'lseek (fd, 0L, SEEK_SET)' when 
lseek's 2nd argument is 'long'.  In the old days before function 
prototypes this style was often necessary but that need went away long 
ago, and nowadays this other style is typically more trouble than it's 
worth.  For example, the 'lseek' call would be "wrong" now because 
lseek's argument type was changed from 'long' to 'off_t', and so a 
maintainer would have to change the call to 'lseek (fd, (off_t) 0, 
SEEK_SET)', whereas the simpler style 'lseek (fd, 0, SEEK_SET)' would 
survive the API change without needing maintenance.



  reply	other threads:[~2014-09-10 14:58 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-10 13:57 Subtle error defining VALMASK? Dmitry Antipov
2014-09-10 14:58 ` Paul Eggert [this message]
2014-09-10 15:30   ` Dmitry Antipov
2014-09-10 16:54     ` Paul Eggert
2014-09-10 17:25       ` More issues with r117851 [Was: Re: Subtle error defining VALMASK?] Dmitry Antipov
2014-09-10 20:57         ` Paul Eggert

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

  List information: https://www.gnu.org/software/emacs/

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

  git send-email \
    --in-reply-to=54106715.4010005@cs.ucla.edu \
    --to=eggert@cs.ucla.edu \
    --cc=dmantipov@yandex.ru \
    --cc=emacs-devel@gnu.org \
    --cc=monnier@IRO.UMontreal.CA \
    /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.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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