git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/4] msvc: Select the "fast" definition of the {get,put}_be32() macros
@ 2010-06-23 19:47 Ramsay Jones
  2010-06-24 11:21 ` Jonathan Nieder
  0 siblings, 1 reply; 5+ messages in thread
From: Ramsay Jones @ 2010-06-23 19:47 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: GIT Mailing-list


On Intel machines, the msvc compiler defines the CPU architecture
macros _M_IX86 and _M_X64 (equivalent to __i386__ and __x86_64__
respectively). Use these macros in the pre-processor expression
to select the "fast" definition of the {get,put}_be32() macros.

Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
---

I did consider adding an additional guard, like so:

    (defined(_MSC_VER) && (defined(_M_IX86) || defined(_M_X64))) || \

However, I decided that the extra paranoia was not needed ...


 block-sha1/sha1.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

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__)
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-06-30 20:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2010-06-25 20:13   ` Ramsay Jones
2010-06-26 18:31     ` Jonathan Nieder
2010-06-30 19:53       ` Ramsay Jones

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