Commit 8a0e8d4d by Per Bothner

(get_set_constructor_bytes): Fix BITS_BIG_ENDIAN -> BYTES_BIG_ENDIAN.

From-SVN: r9417
parent b09f3348
......@@ -4293,7 +4293,7 @@ get_set_constructor_bytes (init, buffer, wd_size)
{
if (bit_buffer[i])
{
if (BITS_BIG_ENDIAN)
if (BYTES_BIG_ENDIAN)
*bytep |= (1 << (set_word_size - 1 - bit_pos));
else
*bytep |= 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