Commit 17072732 by Aldy Hernandez Committed by Aldy Hernandez

* config/rs6000/rs6000.h (SPU_CONST_OFFSET_OK): Change to 0xff.

From-SVN: r55948
parent c288218a
2002-08-01 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.h (SPU_CONST_OFFSET_OK): Change to 0xff.
2002-08-01 Neil Booth <neil@daikokuya.co.uk>
* c-common.c (__GXX_ABI_VERSION): Correct spelling.
......
......@@ -2029,8 +2029,8 @@ typedef struct rs6000_args
#define TOC_RELATIVE_EXPR_P(X) (toc_relative_expr_p (X))
/* SPE offset addressing is limited to 5-bits. */
#define SPE_CONST_OFFSET_OK(x) (((x) & ~0x1f) == 0)
/* SPE offset addressing is limited to 5-bits worth of double words. */
#define SPE_CONST_OFFSET_OK(x) (((x) & ~0xff) == 0)
#define LEGITIMATE_CONSTANT_POOL_ADDRESS_P(X) \
(TARGET_TOC \
......
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