From: "Laurent Desnogues" <laurent.desnogues@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] syscall
Date: Tue, 10 Jun 2008 16:55:02 +0200 [thread overview]
Message-ID: <761ea48b0806100755t7b867373ud0475756da5a2cd7@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 100 bytes --]
TARGET_WORDS_BIGENDIAN is incorrectly spelled TARGET_WORDS_BIG_ENDIAN
in target_offset64.
Laurent
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: syscall.patch --]
[-- Type: text/x-patch; name=syscall.patch, Size: 524 bytes --]
diff -ru -x .svn svn-ref/linux-user/syscall.c svn/linux-user/syscall.c
--- svn-ref/linux-user/syscall.c 2008-06-09 16:29:41.000000000 +0200
+++ svn/linux-user/syscall.c 2008-06-10 16:50:34.000000000 +0200
@@ -3070,7 +3070,7 @@
#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;
Only in svn/linux-user: syscall.c~
reply other threads:[~2008-06-10 14:55 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=761ea48b0806100755t7b867373ud0475756da5a2cd7@mail.gmail.com \
--to=laurent.desnogues@gmail.com \
--cc=qemu-devel@nongnu.org \
/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).