diff options
author | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-08-02 03:01:54 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-08-02 03:01:54 +0000 |
commit | 88c3865996f3be69203664a3889ec54bbeeb8c04 (patch) | |
tree | 5b1f6d40fb08a3721ac701107393f7f79b82b0ab /gcc | |
parent | f4857b9b42f3eb6c59e16c5422053533286d0255 (diff) | |
download | gcc-88c3865996f3be69203664a3889ec54bbeeb8c04.zip gcc-88c3865996f3be69203664a3889ec54bbeeb8c04.tar.gz gcc-88c3865996f3be69203664a3889ec54bbeeb8c04.tar.bz2 |
fix typo
From-SVN: r55968
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index 86e0917..647e5b0 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 \ |