diff options
Diffstat (limited to 'gcc/config/c6x/c6x.md')
-rw-r--r-- | gcc/config/c6x/c6x.md | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gcc/config/c6x/c6x.md b/gcc/config/c6x/c6x.md index e1c6f9aabab..d7606965cde 100644 --- a/gcc/config/c6x/c6x.md +++ b/gcc/config/c6x/c6x.md @@ -1421,27 +1421,23 @@ ;; ------------------------------------------------------------------------- ; operand 0 is the loop count pseudo register -; operand 1 is the number of loop iterations or 0 if it is unknown -; operand 2 is the maximum number of loop iterations -; operand 3 is the number of levels of enclosed loops -; operand 4 is the label to jump to at the top of the loop -; operand 5 indicates if the loop is entered at the top +; operand 1 is the label to jump to at the top of the loop (define_expand "doloop_end" [(parallel [(set (pc) (if_then_else (ne (match_operand:SI 0 "" "") (const_int 1)) - (label_ref (match_operand 4 "" "")) + (label_ref (match_operand 1 "" "")) (pc))) (set (match_dup 0) (plus:SI (match_dup 0) (const_int -1))) - (clobber (match_operand 5 ""))])] ; match_scratch + (clobber (match_dup 2))])] ; match_scratch "TARGET_INSNS_64PLUS && optimize" { /* The loop optimizer doesn't check the predicates... */ if (GET_MODE (operands[0]) != SImode) FAIL; - operands[5] = gen_rtx_SCRATCH (SImode); + operands[2] = gen_rtx_SCRATCH (SImode); }) (define_insn "mvilc" |