Commit b392e756c12ff8ffe4b21d49d31e1db6f15bdf6a
1 parent
530e7615
target-ppc: fix compilation on BigEndian
This fixes BigEndian compilation for target-ppc. (Michael Buesch) git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6193 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-ppc/op_helper.c
... | ... | @@ -2185,7 +2185,7 @@ void helper_vmladduhm (ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b, ppc_avr_t *c) |
2185 | 2185 | } |
2186 | 2186 | #if defined(WORDS_BIGENDIAN) |
2187 | 2187 | #define MRGHI 0 |
2188 | -#define MRGL0 1 | |
2188 | +#define MRGLO 1 | |
2189 | 2189 | #else |
2190 | 2190 | #define MRGHI 1 |
2191 | 2191 | #define MRGLO 0 | ... | ... |