From: Andreas Ericsson <ae@op5.se>
To: "Luck, Tony" <tony.luck@intel.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] fix warning from pack-objects.c
Date: Thu, 23 Feb 2006 23:51:00 +0100 [thread overview]
Message-ID: <43FE3C54.2080103@op5.se> (raw)
In-Reply-To: <200602232242.k1NMgdAJ018406@agluck-lia64.sc.intel.com>
Luck, Tony wrote:
> When compiling on ia64 I get this warning (from gcc 3.4.3):
>
> gcc -o pack-objects.o -c -g -O2 -Wall -DSHA1_HEADER='<openssl/sha.h>' pack-objects.c
> pack-objects.c: In function `pack_revindex_ix':
> pack-objects.c:94: warning: cast from pointer to integer of different size
>
> A double cast (first to long, then to int) shuts gcc up, but is there
> a better way?
>
Make ui and i unsigned long and cast p to unsigned long (or perhaps
ptrdiff_t is preferred?). On 32-bit archs it's no difference, but 64-bit
archs can work with their native size. It's slightly faster (although I
expect the compiler takes care of that anyways).
I noticed this earlier on my shiny AMD FX2 64-bit. The tests run just
fine with my solution. I expect they will with yours as well.
> Signed-off-by: Tony Luck <tony.luck@intel.com>
>
> ---
>
> diff --git a/pack-objects.c b/pack-objects.c
> index 8f352aa..c985fab 100644
> --- a/pack-objects.c
> +++ b/pack-objects.c
> @@ -91,7 +91,7 @@ static int reused_delta = 0;
>
> static int pack_revindex_ix(struct packed_git *p)
> {
> - unsigned int ui = (unsigned int) p;
> + unsigned int ui = (unsigned int)(long)p;
> int i;
>
> ui = ui ^ (ui >> 16); /* defeat structure alignment */
> -
> To unsubscribe from this list: send the line "unsubscribe git" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
Andreas Ericsson andreas.ericsson@op5.se
OP5 AB www.op5.se
Tel: +46 8-230225 Fax: +46 8-230231
prev parent reply other threads:[~2006-02-23 22:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-23 22:42 [PATCH] fix warning from pack-objects.c Luck, Tony
2006-02-23 22:51 ` Andreas Ericsson [this message]
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=43FE3C54.2080103@op5.se \
--to=ae@op5.se \
--cc=git@vger.kernel.org \
--cc=tony.luck@intel.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 NNTP newsgroup(s).