diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-29 07:26:58 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-07-29 07:26:58 +0000 |
commit | 8d237f89299ca24325060c65f2ffe3e84050b588 (patch) | |
tree | 2e8c2eddded74fe6c10b1ee2e98a247c062cf2be /gcc/config | |
parent | f756078bc163cb0f1b504e3784c93efad565fb05 (diff) | |
download | gcc-8d237f89299ca24325060c65f2ffe3e84050b588.tar.gz |
* pa.md (indirect_jump): Remove mode from match_operand. Verify
proper mode in the condition string.
(icacheflush, dcacheflush): Remove modes from match_operands.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28332 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/pa/pa.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 7fdbab03362..a1d2939f55b 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -4678,8 +4678,8 @@ ;;; Hope this is only within a function... (define_insn "indirect_jump" - [(set (pc) (match_operand:SI 0 "register_operand" "r"))] - "" + [(set (pc) (match_operand 0 "register_operand" "r"))] + "GET_MODE (operands[0]) == word_mode" "bv%* %%r0(%0)" [(set_attr "type" "branch") (set_attr "length" "4")]) @@ -5168,8 +5168,8 @@ (define_insn "dcacheflush" [(unspec_volatile [(const_int 1)] 0) - (use (mem:SI (match_operand:SI 0 "register_operand" "r"))) - (use (mem:SI (match_operand:SI 1 "register_operand" "r")))] + (use (mem:SI (match_operand 0 "register_operand" "r"))) + (use (mem:SI (match_operand 1 "register_operand" "r")))] "" "fdc 0(%0)\;fdc 0(%1)\;sync" [(set_attr "type" "multi") @@ -5177,11 +5177,11 @@ (define_insn "icacheflush" [(unspec_volatile [(const_int 2)] 0) - (use (mem:SI (match_operand:SI 0 "register_operand" "r"))) - (use (mem:SI (match_operand:SI 1 "register_operand" "r"))) - (use (match_operand:SI 2 "register_operand" "r")) - (clobber (match_operand:SI 3 "register_operand" "=&r")) - (clobber (match_operand:SI 4 "register_operand" "=&r"))] + (use (mem:SI (match_operand 0 "register_operand" "r"))) + (use (mem:SI (match_operand 1 "register_operand" "r"))) + (use (match_operand 2 "register_operand" "r")) + (clobber (match_operand 3 "register_operand" "=&r")) + (clobber (match_operand 4 "register_operand" "=&r"))] "" "mfsp %%sr0,%4\;ldsid (%2),%3\;mtsp %3,%%sr0\;fic 0(%%sr0,%0)\;fic 0(%%sr0,%1)\;sync\;mtsp %4,%%sr0\;nop\;nop\;nop\;nop\;nop\;nop" [(set_attr "type" "multi") |