OSDN Git Service

PR target/15869
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Jun 2004 21:28:05 +0000 (21:28 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 22 Jun 2004 21:28:05 +0000 (21:28 +0000)
* config/mips/mips.c (mips_avoid_hazards): Call split_all_insns_noflow.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83516 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/mips/mips.c

index 33a58d4..447f27c 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-22  Richard Sandiford  <rsandifo@redhat.com>
+
+       PR target/15869
+       * config/mips/mips.c (mips_avoid_hazards): Call split_all_insns_noflow.
+
 2004-06-22  Alexandre Oliva  <aoliva@redhat.com>
 
        * config/mn10300/mn10300.md (movdi, movdf): Use high/low for movu
index 15489b1..df00a54 100644 (file)
@@ -8907,6 +8907,9 @@ mips_avoid_hazards (void)
   rtx insn, last_insn, lo_reg, delayed_reg;
   int hilo_delay, i;
 
+  /* Force all instructions to be split into their final form.  */
+  split_all_insns_noflow ();
+
   /* Recalculate instruction lengths without taking nops into account.  */
   cfun->machine->ignore_hazard_length_p = true;
   shorten_branches (get_insns ());