Commit d0fe265e by Kazu Hirata Committed by Kazu Hirata

m32r.c (signed_comparison_operator): Add a missing parenthesis.

	* config/m32r/m32r.c (signed_comparison_operator): Add a
	missing parenthesis.

From-SVN: r78958
parent ee0d75ef
2004-03-05 Kazu Hirata <kazu@cs.umass.edu>
* config/m32r/m32r.c (signed_comparison_operator): Add a
missing parenthesis.
2004-03-04 Ian Lance Taylor <ian@wasabisystems.com> 2004-03-04 Ian Lance Taylor <ian@wasabisystems.com>
* ggc-common.c (gt_pch_restore): Don't unmap addr unless we are * ggc-common.c (gt_pch_restore): Don't unmap addr unless we are
......
...@@ -920,7 +920,7 @@ signed_comparison_operator (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) ...@@ -920,7 +920,7 @@ signed_comparison_operator (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
return (COMPARISON_P (op) return (COMPARISON_P (op)
&& (code == EQ || code == NE && (code == EQ || code == NE
|| code == LT || code == LE || code == GT || code == GE); || code == LT || code == LE || code == GT || code == GE));
} }
/* Return 1 if OP is (mem (reg ...)). /* Return 1 if OP is (mem (reg ...)).
......
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