diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-19 01:09:38 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-04-19 01:09:38 +0000 |
commit | a27631ca3af0e36f2c5cf926f41aa1bfb60cce2b (patch) | |
tree | a0ab73dc25147bb72d514e46db67b708f978a784 /gcc/tree.c | |
parent | 117a90334a20d702523322732493941db614c231 (diff) | |
download | gcc-a27631ca3af0e36f2c5cf926f41aa1bfb60cce2b.tar.gz |
(get_set_constructor_bytes): Fix BITS_BIG_ENDIAN -> BYTES_BIG_ENDIAN.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9417 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c index eb5f6bfd5f9..3310e88bd76 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -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; |