Commit d62d64da by Richard Kenner

Properly test BYTES_BIG_ENDIAN.

From-SVN: r6754
parent 8cd2aff2
/* Definitions for Bytecode Interpreter. /* Definitions for Bytecode Interpreter.
Copyright (C) 1993 Free Software Foundation, Inc. Copyright (C) 1993, 1994 Free Software Foundation, Inc.
This file is part of GNU CC. This file is part of GNU CC.
...@@ -124,7 +124,7 @@ struct bytecode ...@@ -124,7 +124,7 @@ struct bytecode
DEST offset by OFFSET bits. */ DEST offset by OFFSET bits. */
#ifdef BYTES_BIG_ENDIAN #if BYTES_BIG_ENDIAN
#define SHIFT_IN_BITS(DEST, SOURCE, OFFSET, NBITS) \ #define SHIFT_IN_BITS(DEST, SOURCE, OFFSET, NBITS) \
(DEST = ((DEST) << (NBITS)) \ (DEST = ((DEST) << (NBITS)) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment