From: Jonathan Nieder <jrnieder@gmail.com>
To: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Cc: Junio C Hamano <gitster@pobox.com>,
GIT Mailing-list <git@vger.kernel.org>
Subject: Re: [PATCH 2/4] msvc: Select the "fast" definition of the {get,put}_be32() macros
Date: Thu, 24 Jun 2010 06:21:48 -0500 [thread overview]
Message-ID: <20100624112148.GA12485@burratino> (raw)
In-Reply-To: <4C2264B6.5010906@ramsay1.demon.co.uk>
Ramsay Jones wrote:
> diff --git a/block-sha1/sha1.c b/block-sha1/sha1.c
> index d893475..e102856 100644
> --- a/block-sha1/sha1.c
> +++ b/block-sha1/sha1.c
> @@ -70,6 +70,7 @@
> */
>
> #if defined(__i386__) || defined(__x86_64__) || \
> + defined(_M_IX86) || defined(_M_X64) || \
> defined(__ppc__) || defined(__ppc64__) || \
> defined(__powerpc__) || defined(__powerpc64__) || \
> defined(__s390__) || defined(__s390x__)
Looks good to me, for what it’s worth. You might want a similar
change on line 57:
-#if defined(__i386__) || defined(__x86_64__)
+#if defined(__i386__) || defined(__x86_64__) || \
+ defined(_M_IX86) || defined(_M_X64)
#define setW(x, val) (*(volatile unsigned int *)&W(x) = (val))
Or alternatively, it might make sense to add something like the
following to compat/mingw.h or git-compat-util.h to fix this once.
#if defined(_M_IX86) && !defined(__i386__)
# define __i386__
#endif
#if defined(_M_X64) && !defined (__x86_64__)
# define __x86_64__
#endif
Thanks,
Jonathan
next prev parent reply other threads:[~2010-06-24 11:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-23 19:47 [PATCH 2/4] msvc: Select the "fast" definition of the {get,put}_be32() macros Ramsay Jones
2010-06-24 11:21 ` Jonathan Nieder [this message]
2010-06-25 20:13 ` Ramsay Jones
2010-06-26 18:31 ` Jonathan Nieder
2010-06-30 19:53 ` Ramsay Jones
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=20100624112148.GA12485@burratino \
--to=jrnieder@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=ramsay@ramsay1.demon.co.uk \
/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).