mips.md (define_delay): Adjust required length.
* config/mips/mips.md (define_delay) [mips16]: Adjust required length. From-SVN: r49567
This commit is contained in:
parent
b8fe3c1e06
commit
06e455a9db
@ -1,3 +1,8 @@
|
||||
2002-02-07 Alexandre Oliva <aoliva@redhat.com>
|
||||
|
||||
* config/mips/mips.md (define_delay) [mips16]: Adjust required
|
||||
length.
|
||||
|
||||
2002-02-06 Richard Henderson <rth@redhat.com>
|
||||
|
||||
PR c/5609
|
||||
|
@ -164,15 +164,28 @@
|
||||
(eq (symbol_ref "mips16") (const_int 0)))
|
||||
[(and (eq_attr "dslot" "no") (eq_attr "length" "4"))
|
||||
(nil)
|
||||
(and (eq_attr "branch_likely" "yes") (and (eq_attr "dslot" "no") (eq_attr "length" "4")))])
|
||||
(and (eq_attr "branch_likely" "yes")
|
||||
(and (eq_attr "dslot" "no")
|
||||
(eq_attr "length" "4")))])
|
||||
|
||||
(define_delay (eq_attr "type" "jump")
|
||||
[(and (eq_attr "dslot" "no") (eq_attr "length" "4"))
|
||||
[(and (eq_attr "dslot" "no")
|
||||
;; ADJUST_INSN_LENGTH divides length by 2 on mips16, so cope
|
||||
;; with it here. It doesn't matter for branches above,
|
||||
;; because mips16 branches don't have delay slots anyway.
|
||||
(ior (and (eq (symbol_ref "mips16") (const_int 0))
|
||||
(eq_attr "length" "4"))
|
||||
(and (ne (symbol_ref "mips16") (const_int 0))
|
||||
(eq_attr "length" "2"))))
|
||||
(nil)
|
||||
(nil)])
|
||||
|
||||
(define_delay (and (eq_attr "type" "call") (eq_attr "abicalls" "no"))
|
||||
[(and (eq_attr "dslot" "no") (eq_attr "length" "4"))
|
||||
[(and (eq_attr "dslot" "no")
|
||||
(ior (and (eq (symbol_ref "mips16") (const_int 0))
|
||||
(eq_attr "length" "4"))
|
||||
(and (ne (symbol_ref "mips16") (const_int 0))
|
||||
(eq_attr "length" "2"))))
|
||||
(nil)
|
||||
(nil)])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user