From a32b8cbac844a735becffe2c5becf1d3459effa6 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 12 Mar 1994 07:36:32 -0500 Subject: [PATCH] Properly test WORDS_BIG_ENDIAN. From-SVN: r6755 --- gcc/bytecode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/bytecode.h b/gcc/bytecode.h index f467abc8f04..87030bef698 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; \ -- 2.30.2