diff options
author | Jeff Law <law@gcc.gnu.org> | 1996-05-23 09:20:15 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1996-05-23 09:20:15 -0600 |
commit | b0b61fc4649b98ce8a9f57f0b43b5e1de1b8e118 (patch) | |
tree | c017ef6cd7fca15be7c90cb6f728f1b720d1a32c | |
parent | bf63e3a23c5db1564934d089b5dedf946df13ce8 (diff) | |
download | gcc-b0b61fc4649b98ce8a9f57f0b43b5e1de1b8e118.zip gcc-b0b61fc4649b98ce8a9f57f0b43b5e1de1b8e118.tar.gz gcc-b0b61fc4649b98ce8a9f57f0b43b5e1de1b8e118.tar.bz2 |
Fix typo in last change.
From-SVN: r12082
-rw-r--r-- | gcc/config/h8300/h8300.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 18fc144..1ef3bf7 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -739,8 +739,8 @@ struct rtx_def *function_arg(); /* We handle signed and unsigned offsets here. */ \ && INTVAL (X) > (TARGET_H8300 ? -0x10000 : -0x1000000) \ && INTVAL (X) < (TARGET_H8300 ? 0x10000 : 0x1000000)) \ - || ((GET_CODE (X) == HIGH || GET_CODE (X) == CONST \ - && TARGET_H8300))) + || ((GET_CODE (X) == HIGH || GET_CODE (X) == CONST) \ + && TARGET_H8300)) /* Nonzero if the constant value X is a legitimate general operand. It is given that X satisfies CONSTANT_P or is a CONST_DOUBLE. */ |