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

From-SVN: r55948
This commit is contained in:
Aldy Hernandez 2002-08-01 21:18:34 +00:00 committed by Aldy Hernandez
parent c288218ab6
commit 1707273202
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
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.

View file

@ -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 \