diff options
author | Torbjorn Granlund <tege@gnu.org> | 1992-08-16 14:39:53 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1992-08-16 14:39:53 +0000 |
commit | 2bb649fe7cf7ba78657d44fb9a885dfa46cb6cb4 (patch) | |
tree | 86e58951ee6ba370db05a0d84f7a597bc3d25093 | |
parent | f875bd311750d5ba6dedd5b018170859e56268a3 (diff) | |
download | gcc-2bb649fe7cf7ba78657d44fb9a885dfa46cb6cb4.zip gcc-2bb649fe7cf7ba78657d44fb9a885dfa46cb6cb4.tar.gz gcc-2bb649fe7cf7ba78657d44fb9a885dfa46cb6cb4.tar.bz2 |
(print_operand_address): Fix typo.
From-SVN: r1861
-rw-r--r-- | gcc/config/ns32k/ns32k.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/ns32k/ns32k.c b/gcc/config/ns32k/ns32k.c index 26051f9..1f3b0b4 100644 --- a/gcc/config/ns32k/ns32k.c +++ b/gcc/config/ns32k/ns32k.c @@ -526,7 +526,7 @@ print_operand_address (file, addr) #ifdef INDEX_RATHER_THAN_BASE /* This is a re-implementation of the SEQUENT_ADDRESS_BUG fix. */ if (base && !indexexp && GET_CODE (base) == REG - && REG_OK_FOR_INDEX_P (base) + && REG_OK_FOR_INDEX_P (base)) { indexexp = base; base = 0; |