diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-27 16:13:06 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:09:21 -0500 |
commit | 8a81c8aba7d4e6675647e3a02bd7d96e8213800a (patch) | |
tree | 187b840091116d420116fb2627e48afa25d59563 /fpu | |
parent | dfe59bc0a3b52ce15041464a57a9dd484d2408c2 (diff) | |
download | qemu-8a81c8aba7d4e6675647e3a02bd7d96e8213800a.tar.gz qemu-8a81c8aba7d4e6675647e3a02bd7d96e8213800a.tar.bz2 qemu-8a81c8aba7d4e6675647e3a02bd7d96e8213800a.zip |
rename WORDS_BIGENDIAN to HOST_WORDS_BIGENDIAN
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'fpu')
-rw-r--r-- | fpu/softfloat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpu/softfloat.h b/fpu/softfloat.h index f262150883..bebfefd057 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -146,7 +146,7 @@ typedef struct { #endif #ifdef FLOAT128 typedef struct { -#ifdef WORDS_BIGENDIAN +#ifdef HOST_WORDS_BIGENDIAN uint64_t high, low; #else uint64_t low, high; |