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
This commit is contained in:
Nick Clifton 2014-02-21 08:11:10 +00:00 committed by Nick Clifton
parent dffd569eab
commit 4b156fd025
2 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,10 @@
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

View File

@ -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")