Commit 5e0a7e40 by Richard Sandiford Committed by Richard Sandiford

predicates.md (jump_address_operand): Fix register mode check.

gcc/
	* config/h8300/predicates.md (jump_address_operand): Fix register
	mode check.

From-SVN: r171384
parent ba9796cb
2011-03-24 Richard Sandiford <richard.sandiford@linaro.org>
* config/h8300/predicates.md (jump_address_operand): Fix register
mode check.
2011-03-24 Ira Rosen <ira.rosen@linaro.org>
* doc/invoke.texi (max-stores-to-sink): Document.
......
......@@ -259,7 +259,7 @@
(match_code "reg,mem")
{
if (GET_CODE (op) == REG)
return mode == Pmode;
return GET_MODE (op) == Pmode;
if (GET_CODE (op) == MEM)
{
......
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