Commit bfa653b3 by Aldy Hernandez Committed by Aldy Hernandez

predicates.md (integer_register_operand): Use GPR_AP_OR_PSEUDO_P.

	* config/frv/predicates.md (integer_register_operand): Use
	GPR_AP_OR_PSEUDO_P.

From-SVN: r102371
parent 43e364dd
2005-07-25 Aldy Hernandez <aldyh@redhat.com>
* config/frv/predicates.md (integer_register_operand): Use
GPR_AP_OR_PSEUDO_P.
2005-07-25 Andrew Pinski <pinskia@physics.uc.edu> 2005-07-25 Andrew Pinski <pinskia@physics.uc.edu>
PR tree-opt/22484 PR tree-opt/22484
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
if (GET_CODE (op) != REG) if (GET_CODE (op) != REG)
return FALSE; return FALSE;
return GPR_OR_PSEUDO_P (REGNO (op)); return GPR_AP_OR_PSEUDO_P (REGNO (op));
}) })
;; Return 1 is OP is a memory operand, or will be turned into one by ;; Return 1 is OP is a memory operand, or will be turned into one by
......
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