diff options
| -rw-r--r-- | gcc/ChangeLog | 8 | ||||
| -rw-r--r-- | gcc/config/mips/mips.md | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5736247..c831ae0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,10 @@ -2002-02-07 Chris Demetriou <cgd@broadcom.com> +2002-02-08 Chris Demetriou <cgd@broadcom.com> + + * config/mips/mips.md (casesi_internal, casesi_internal_di): + Protect jump delay slot instructions with .set noreorder and + .set nomacro. + +2002-02-08 Chris Demetriou <cgd@broadcom.com> * config/mips/mips.md (casesi_internal_di): Calculate the index into the target offset table correctly. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index ba3e975..19049af 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -9476,7 +9476,7 @@ move\\t%0,%z4\\n\\ (clobber (reg:SI 31))] "TARGET_EMBEDDED_PIC" "%(bal\\t%S1\;sll\\t%2,%0,2\\n%~%S1:\;addu\\t%2,%2,$31%)\;\\ -lw\\t%2,%1-%S1(%2)\;addu\\t%2,%2,$31\;j\\t%2" +lw\\t%2,%1-%S1(%2)\;addu\\t%2,%2,$31\\n\\t%*j\\t%2" [(set_attr "type" "jump") (set_attr "mode" "none") (set_attr "length" "24")]) @@ -9493,7 +9493,7 @@ lw\\t%2,%1-%S1(%2)\;addu\\t%2,%2,$31\;j\\t%2" (clobber (reg:DI 31))] "TARGET_EMBEDDED_PIC" "%(bal\\t%S1\;sll\\t%2,%0,3\\n%~%S1:\;daddu\\t%2,%2,$31%)\;\\ -ld\\t%2,%1-%S1(%2)\;daddu\\t%2,%2,$31\;j\\t%2" +ld\\t%2,%1-%S1(%2)\;daddu\\t%2,%2,$31\\n\\t%*j\\t%2" [(set_attr "type" "jump") (set_attr "mode" "none") (set_attr "length" "24")]) |
