2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-03-26 19:51:12 +08:00

(get_set_constructor_bytes): Fix BITS_BIG_ENDIAN -> BYTES_BIG_ENDIAN.

From-SVN: r9417
This commit is contained in:
Per Bothner 1995-04-18 18:09:38 -07:00
parent b09f334842
commit 8a0e8d4dc4

@ -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;