summaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorPer Bothner <bothner@gcc.gnu.org>1995-04-18 18:09:38 -0700
committerPer Bothner <bothner@gcc.gnu.org>1995-04-18 18:09:38 -0700
commit8a0e8d4dc4cff5cd0293a6bbef3ed77003d598e1 (patch)
treea0ab73dc25147bb72d514e46db67b708f978a784 /gcc/tree.c
parentb09f3348426af5a7016f096ccdf363c332aaf153 (diff)
downloadgcc-8a0e8d4dc4cff5cd0293a6bbef3ed77003d598e1.tar.gz
(get_set_constructor_bytes): Fix BITS_BIG_ENDIAN -> BYTES_BIG_ENDIAN.
From-SVN: r9417
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;