Commit 4b156fd0 by Nick Clifton Committed by Nick Clifton

stormy16.md (pushdqi1): Add mode to post_inc.

	* config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.
	(pushhi1): Likewise.
	(popqi1): Add mode to pre_dec.
	(pophi1): Likewise.

From-SVN: r207984
parent dffd569e
2014-02-21 Nick Clifton <nickc@redhat.com>
* config/stormy16/stormy16.md (pushdqi1): Add mode to post_inc.
(pushhi1): Likewise.
(popqi1): Add mode to pre_dec.
(pophi1): Likewise.
2014-02-21 Jakub Jelinek <jakub@redhat.com>
* config/i386/i386.c (ix86_expand_vec_perm): Use V8SImode
......
......@@ -114,7 +114,7 @@
;; insns like this one are never generated.
(define_insn "pushqi1"
[(set (mem:QI (post_inc (reg:HI 15)))
[(set (mem:QI (post_inc:HI (reg:HI 15)))
(match_operand:QI 0 "register_operand" "r"))]
""
"push %0"
......@@ -123,7 +123,7 @@
(define_insn "popqi1"
[(set (match_operand:QI 0 "register_operand" "=r")
(mem:QI (pre_dec (reg:HI 15))))]
(mem:QI (pre_dec:HI (reg:HI 15))))]
""
"pop %0"
[(set_attr "psw_operand" "nop")
......@@ -168,7 +168,7 @@
(set_attr "psw_operand" "0,0,0,0,nop,0,nop,0,0")])
(define_insn "pushhi1"
[(set (mem:HI (post_inc (reg:HI 15)))
[(set (mem:HI (post_inc:HI (reg:HI 15)))
(match_operand:HI 0 "register_operand" "r"))]
""
"push %0"
......@@ -177,7 +177,7 @@
(define_insn "pophi1"
[(set (match_operand:HI 0 "register_operand" "=r")
(mem:HI (pre_dec (reg:HI 15))))]
(mem:HI (pre_dec:HI (reg:HI 15))))]
""
"pop %0"
[(set_attr "psw_operand" "nop")
......
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