diff options
| author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-06-13 23:10:10 +0000 | 
|---|---|---|
| committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-06-13 23:10:10 +0000 | 
| commit | 016bf3f3cf9793b13b8255e56cfd49c7f4c3a418 (patch) | |
| tree | 75696d59fe8b1b2aa0df81107a83afd552c842da | |
| parent | 573bdf9443d6a0b216a4a408083b248258f5d940 (diff) | |
| download | ppe42-gcc-016bf3f3cf9793b13b8255e56cfd49c7f4c3a418.tar.gz ppe42-gcc-016bf3f3cf9793b13b8255e56cfd49c7f4c3a418.zip  | |
(decrement_and_branch): Finish last fix; update matching constraint.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9940 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/config/rs6000/rs6000.md | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 60ff71f181b..638bdbf787b 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -7126,7 +7126,7 @@  ;; JUMP_INSNs.  (define_insn ""    [(set (pc) -	(if_then_else (ne (match_operand:SI 1 "register_operand" "0,*r,*r") +	(if_then_else (ne (match_operand:SI 1 "register_operand" "2,*r,*r")  			  (const_int 1))  		      (label_ref (match_operand 0 "" ""))  		      (pc))) @@ -7150,7 +7150,7 @@  ;; Similar, but we can use GE since we have a REG_NONNEG.  (define_insn ""    [(set (pc) -	(if_then_else (ge (match_operand:SI 1 "register_operand" "0,*r,*r") +	(if_then_else (ge (match_operand:SI 1 "register_operand" "2,*r,*r")  			  (const_int 0))  		      (label_ref (match_operand 0 "" ""))  		      (pc))) @@ -7173,7 +7173,7 @@  (define_insn ""    [(set (pc) -	(if_then_else (eq (match_operand:SI 1 "register_operand" "0,*r,*r") +	(if_then_else (eq (match_operand:SI 1 "register_operand" "2,*r,*r")  			  (const_int 1))  		      (label_ref (match_operand 0 "" ""))  		      (pc)))  | 

