summaryrefslogtreecommitdiffstats
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1995-04-19 01:09:38 +0000
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1995-04-19 01:09:38 +0000
commita27631ca3af0e36f2c5cf926f41aa1bfb60cce2b (patch)
treea0ab73dc25147bb72d514e46db67b708f978a784 /gcc/tree.c
parent117a90334a20d702523322732493941db614c231 (diff)
downloadppe42-gcc-a27631ca3af0e36f2c5cf926f41aa1bfb60cce2b.tar.gz
ppe42-gcc-a27631ca3af0e36f2c5cf926f41aa1bfb60cce2b.zip
(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.c2
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;
OpenPOWER on IntegriCloud