diff options
Diffstat (limited to 'target/s390x/tcg/vec.h')
-rw-r--r-- | target/s390x/tcg/vec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/tcg/vec.h b/target/s390x/tcg/vec.h index a6e3618..8d095ef 100644 --- a/target/s390x/tcg/vec.h +++ b/target/s390x/tcg/vec.h @@ -38,7 +38,7 @@ typedef union S390Vector { * W: [ 1][ 0] - [ 3][ 2] * DW: [ 0] - [ 1] */ -#ifndef HOST_WORDS_BIGENDIAN +#if !HOST_BIG_ENDIAN #define H1(x) ((x) ^ 7) #define H2(x) ((x) ^ 3) #define H4(x) ((x) ^ 1) |