diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-12 07:36:32 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-12 07:36:32 -0500 |
commit | a32b8cbac844a735becffe2c5becf1d3459effa6 (patch) | |
tree | 067a65537927ad8c8a660211733eb188e9404092 /gcc/bytecode.h | |
parent | d62d64da542ed0540d0306a8e3ba03d7292f78f7 (diff) | |
download | gcc-a32b8cbac844a735becffe2c5becf1d3459effa6.zip gcc-a32b8cbac844a735becffe2c5becf1d3459effa6.tar.gz gcc-a32b8cbac844a735becffe2c5becf1d3459effa6.tar.bz2 |
Properly test WORDS_BIG_ENDIAN.
From-SVN: r6755
Diffstat (limited to 'gcc/bytecode.h')
-rw-r--r-- | gcc/bytecode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bytecode.h b/gcc/bytecode.h index f467abc..87030be 100644 --- a/gcc/bytecode.h +++ b/gcc/bytecode.h @@ -1,5 +1,5 @@ /* Bytecode definitions for GNU C-compiler. - Copyright (C) 1993 Free Software Foundation, Inc. + Copyright (C) 1993, 1994 Free Software Foundation, Inc. This file is part of GNU CC. @@ -24,7 +24,7 @@ extern int max_stack_depth; /* Emit DI constant according to target machine word ordering */ -#ifdef WORD_HIGH_ENDIAN +#if WORDS_BIG_ENDIAN #define bc_emit_bytecode_DI_const(CST) \ { int opcode; \ |