summaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2012-03-24 19:33:08 -0700
committerantirez <antirez@gmail.com>2012-04-11 11:03:30 +0200
commit3f7438ef9b969aa4bb90445b51fd93652a377ea0 (patch)
treea5c21ca23ef990125afdd9e89a85c02a607d4907 /src/config.h
parentf2f2ba1b3ab5147684143ebfb2981c14c9a0bd27 (diff)
downloadredis-3f7438ef9b969aa4bb90445b51fd93652a377ea0.tar.gz
Everything x86 is little endian
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/config.h b/src/config.h
index 6a69364a9..136fd40c4 100644
--- a/src/config.h
+++ b/src/config.h
@@ -59,10 +59,11 @@
#define BIG_ENDIAN 4321 /* most-significant byte first (IBM, net) */
#define PDP_ENDIAN 3412 /* LSB first in word, MSW first in long (pdp)*/
-#if defined(vax) || defined(ns32000) || defined(sun386) || defined(__i386__) || \
- defined(MIPSEL) || defined(_MIPSEL) || defined(BIT_ZERO_ON_RIGHT) || \
- defined(__alpha__) || defined(__alpha)
-#define BYTE_ORDER LITTLE_ENDIAN
+#if defined(__i386__) || defined(__x86_64__) || defined(__amd64__) || \
+ defined(vax) || defined(ns32000) || defined(sun386) || \
+ defined(MIPSEL) || defined(_MIPSEL) || defined(BIT_ZERO_ON_RIGHT) || \
+ defined(__alpha__) || defined(__alpha)
+#define BYTE_ORDER LITTLE_ENDIAN
#endif
#if defined(sel) || defined(pyr) || defined(mc68000) || defined(sparc) || \