Commit b09f3348 by Per Bothner

(store_constructor): Fix BITS_BIG_ENDIAN -> BYTES_BIG_ENDIAN for SET_TYPE.

From-SVN: r9416
parent b2b6cc0a
...@@ -3187,7 +3187,7 @@ store_constructor (exp, target) ...@@ -3187,7 +3187,7 @@ store_constructor (exp, target)
{ {
if (bit_buffer[ibit]) if (bit_buffer[ibit])
{ {
if (BITS_BIG_ENDIAN) if (BYTES_BIG_ENDIAN)
word |= (1 << (set_word_size - 1 - bit_pos)); word |= (1 << (set_word_size - 1 - bit_pos));
else else
word |= 1 << bit_pos; word |= 1 << bit_pos;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment