Commit 94aec8dd by Kazu Hirata Committed by Kazu Hirata

h8300.c (tiny_constant_address_p): Parenthesize expressions appropriately.

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

From-SVN: r59057
parent 110c25ef
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.
2002-11-12 Kazu Hirata <kazu@cs.umass.edu>
......
......@@ -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))));
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment