diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2004-10-07 06:41:25 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-10-07 06:41:25 +0000 |
commit | ac6b57e5ecd517915dad2816e7cd92b6f6aa38ab (patch) | |
tree | 3148163d54e29155d6a6699c887ae99395a79d59 | |
parent | a82bbcbbbe6078e451d46cd4b2387894e1677f01 (diff) | |
download | gcc-ac6b57e5ecd517915dad2816e7cd92b6f6aa38ab.zip gcc-ac6b57e5ecd517915dad2816e7cd92b6f6aa38ab.tar.gz gcc-ac6b57e5ecd517915dad2816e7cd92b6f6aa38ab.tar.bz2 |
re PR target/17770 (No NOP after LWL with -mips1)
PR target/17770
* config/mips/mips.md (mov_<load>l): Remove hazard=none attribute.
From-SVN: r88670
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/mips/mips.md | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3b8acfb..22a410a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-10-07 Richard Sandiford <rsandifo@redhat.com> + + PR target/17770 + * config/mips/mips.md (mov_<load>l): Remove hazard=none attribute. + 2004-10-07 Zdenek Dvorak <dvorakz@suse.cz> PR rtl-optimization/17791 diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 70428ae..3bcc72a 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -2828,8 +2828,7 @@ beq\t%2,%.,1b\;\ "!TARGET_MIPS16" "<load>l\t%0,%2" [(set_attr "type" "load") - (set_attr "mode" "<MODE>") - (set_attr "hazard" "none")]) + (set_attr "mode" "<MODE>")]) (define_insn "mov_<load>r" [(set (match_operand:GPR 0 "register_operand" "=d") |