Commit aaf5d6c0 by Uros Bizjak

predicates.md (x86_64_szext_general_operand): Do not nest ior expressions.

	* config/i386/predicates.md (x86_64_szext_general_operand): Do not
	nest ior expressions.
	(x86_64_szext_nonmemory_operand): Ditto.
	(call_insn_operand): Ditto.

From-SVN: r154241
parent d22f0231
2009-11-17 Uros Bizjak <ubizjak@gmail.com>
* config/i386/predicates.md (x86_64_szext_general_operand): Do not
nest ior expressions.
(x86_64_szext_nonmemory_operand): Ditto.
(call_insn_operand): Ditto.
2009-11-16 Alexandre Oliva <aoliva@redhat.com>
* stmt.c (expand_asm_stmt): Get locus from stmt.
......@@ -79,7 +86,7 @@
(execute_all_ipa_transforms): Update.
(execute_one_pass): Update.
2009-11-14 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
2009-11-14 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
PR target/21078, 21080
* config/avr/avr.c (avr_return_addr_rtx): New function for
......@@ -327,8 +327,8 @@
(define_predicate "x86_64_szext_general_operand"
(if_then_else (match_test "TARGET_64BIT")
(ior (match_operand 0 "nonimmediate_operand")
(ior (match_operand 0 "x86_64_immediate_operand")
(match_operand 0 "x86_64_zext_immediate_operand")))
(match_operand 0 "x86_64_immediate_operand")
(match_operand 0 "x86_64_zext_immediate_operand"))
(match_operand 0 "general_operand")))
;; Return nonzero if OP is nonmemory operand representable on x86_64.
......@@ -342,8 +342,8 @@
(define_predicate "x86_64_szext_nonmemory_operand"
(if_then_else (match_test "TARGET_64BIT")
(ior (match_operand 0 "register_operand")
(ior (match_operand 0 "x86_64_immediate_operand")
(match_operand 0 "x86_64_zext_immediate_operand")))
(match_operand 0 "x86_64_immediate_operand")
(match_operand 0 "x86_64_zext_immediate_operand"))
(match_operand 0 "nonmemory_operand")))
;; Return true when operand is PIC expression that can be computed by lea
......@@ -577,8 +577,8 @@
;; Test for a valid operand for a call instruction.
(define_predicate "call_insn_operand"
(ior (match_operand 0 "constant_call_address_operand")
(ior (match_operand 0 "call_register_no_elim_operand")
(match_operand 0 "memory_operand"))))
(match_operand 0 "call_register_no_elim_operand")
(match_operand 0 "memory_operand")))
;; Similarly, but for tail calls, in which we cannot allow memory references.
(define_predicate "sibcall_insn_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