projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d5bd36
)
Fix typo, by Laurent Desnogues.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 10 Jun 2008 15:29:15 +0000
(15:29 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Tue, 10 Jun 2008 15:29:15 +0000
(15:29 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4726
c046a42c
-6fe2-441c-8c8c-
71466251a162
linux-user/syscall.c
patch
|
blob
|
history
diff --git
a/linux-user/syscall.c
b/linux-user/syscall.c
index c99c5ffe20e93f426e0c7275a1b322e936b45562..cd90946aeb2bf26a8fc0727ef21a917cd56e250c 100644
(file)
--- a/
linux-user/syscall.c
+++ b/
linux-user/syscall.c
@@
-3070,7
+3070,7
@@
void syscall_init(void)
#if TARGET_ABI_BITS == 32
static inline uint64_t target_offset64(uint32_t word0, uint32_t word1)
{
-#ifdef TARGET_WORDS_BIG
_
ENDIAN
+#ifdef TARGET_WORDS_BIGENDIAN
return ((uint64_t)word0 << 32) | word1;
#else
return ((uint64_t)word1 << 32) | word0;