h8300.c (tiny_constant_address_p): Parenthesize expressions appropriately.

* config/h8300/h8300.c (tiny_constant_address_p): Parenthesize
	expressions appropriately.

From-SVN: r59057
This commit is contained in:
Kazu Hirata 2002-11-12 18:53:39 +00:00 committed by Kazu Hirata
parent 110c25efd7
commit 94aec8dd49
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2002-11-12 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (tiny_constant_address_p): Parenthesize
expressions appropriately.
2002-11-12 Kazu Hirata <kazu@cs.umass.edu>
* gthr-win32.h: Fix formatting.

View File

@ -3909,7 +3909,7 @@ h8300_tiny_constant_address_p (x)
return (0
|| (TARGET_H8300H
&& IN_RANGE (addr, h1, h2) || IN_RANGE (addr, h3, h4))
&& (IN_RANGE (addr, h1, h2) || IN_RANGE (addr, h3, h4)))
|| (TARGET_H8300S
&& IN_RANGE (addr, s1, s2) || IN_RANGE (addr, s3, s4)));
&& (IN_RANGE (addr, s1, s2) || IN_RANGE (addr, s3, s4))));
}