Commit 00cbba89 by Uros Bizjak

predicates.md (general_reg_operand): Use GENERAL_REGNO_P.

	* config/i386/predicates.md (general_reg_operand): Use GENERAL_REGNO_P.

From-SVN: r225568
parent 422a17ce
2015-07-08 Uros Bizjak <ubizjak@gmail.com>
* config/i386/predicates.md (general_reg_operand): Use GENERAL_REGNO_P.
2015-07-08 Iain Sandoe <iain@codesourcery.com>
PR target/66523
* config/darwin.c (darwin_mark_decl_preserved): Exclude 'L' label names from
preservation.
* config/darwin.c (darwin_mark_decl_preserved): Exclude 'L' label
names from preservation.
2015-07-08 Vladimir Makarov <vmakarov@redhat.com>
......
......@@ -35,7 +35,7 @@
;; True if the operand is a GENERAL class register.
(define_predicate "general_reg_operand"
(and (match_code "reg")
(match_test "GENERAL_REG_P (op)")))
(match_test "GENERAL_REGNO_P (REGNO (op))")))
;; Return true if OP is a register operand other than an i387 fp register.
(define_predicate "register_and_not_fp_reg_operand"
......
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