From 88c3865996f3be69203664a3889ec54bbeeb8c04 Mon Sep 17 00:00:00 2001 From: Aldy Hernandez Date: Fri, 2 Aug 2002 03:01:54 +0000 Subject: [PATCH] fix typo From-SVN: r55968 --- gcc/config/rs6000/rs6000.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 86e0917198a..647e5b045fb 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -2030,7 +2030,7 @@ typedef struct rs6000_args #define TOC_RELATIVE_EXPR_P(X) (toc_relative_expr_p (X)) /* SPE offset addressing is limited to 5-bits worth of double words. */ -#define SPE_CONST_OFFSET_OK(x) (((x) & ~0xff) == 0) +#define SPE_CONST_OFFSET_OK(x) (((x) & ~0xf8) == 0) #define LEGITIMATE_CONSTANT_POOL_ADDRESS_P(X) \ (TARGET_TOC \ -- 2.30.2