diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-16 19:41:11 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-16 19:41:11 +0000 |
commit | 01064ac1c36410309f1e2ffbccfa70d1cd86a77d (patch) | |
tree | 38be8fe9b95914a2d0b0082a81d2bec3de3a3210 /gcc/config/vax | |
parent | 32b53d838c88b027e03b878187a8e309d5eb12ba (diff) | |
download | gcc-01064ac1c36410309f1e2ffbccfa70d1cd86a77d.tar.gz |
* vax.md (casesi): Use emit_jump_insn. Tidy expander pattern.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54673 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/vax')
-rw-r--r-- | gcc/config/vax/vax.md | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/gcc/config/vax/vax.md b/gcc/config/vax/vax.md index c19427908df..56e18a06391 100644 --- a/gcc/config/vax/vax.md +++ b/gcc/config/vax/vax.md @@ -1931,24 +1931,17 @@ ;; This is here to accept 5 arguments (as passed by expand_end_case) ;; and pass the first 4 along to the casesi1 pattern that really does the work. (define_expand "casesi" - [(set (pc) - (if_then_else - (leu (minus:SI (match_operand:SI 0 "general_operand" "g") - (match_operand:SI 1 "general_operand" "g")) - (match_operand:SI 2 "general_operand" "g")) - (plus:SI (sign_extend:SI - (mem:HI (plus:SI (mult:SI (minus:SI (match_dup 0) - (match_dup 1)) - (const_int 2)) - (pc)))) - (label_ref:SI (match_operand 3 "" ""))) - (pc))) - (match_operand 4 "" "")] + [(match_operand:SI 0 "general_operand" "") ; index + (match_operand:SI 1 "general_operand" "") ; lower + (match_operand:SI 2 "general_operand" "") ; upper-lower + (match_operand 3 "" "") ; table label + (match_operand 4 "" "")] ; default label "" - " - emit_insn (gen_casesi1 (operands[0], operands[1], operands[2], operands[3])); +{ + emit_jump_insn (gen_casesi1 (operands[0], operands[1], + operands[2], operands[3])); DONE; -") +}) (define_insn "casesi1" [(set (pc) |