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

From-SVN: r9416
This commit is contained in:
Per Bothner 1995-04-18 18:07:59 -07:00
parent b2b6cc0a55
commit b09f334842

View File

@ -3187,7 +3187,7 @@ store_constructor (exp, target)
{
if (bit_buffer[ibit])
{
if (BITS_BIG_ENDIAN)
if (BYTES_BIG_ENDIAN)
word |= (1 << (set_word_size - 1 - bit_pos));
else
word |= 1 << bit_pos;