]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
reload1.c (do_output_reload): Add assertion rejecting a CALL_INSN.
authorIan Lance Taylor <ian@airs.com>
Sat, 14 Jan 2006 05:30:32 +0000 (05:30 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Sat, 14 Jan 2006 05:30:32 +0000 (05:30 +0000)
* reload1.c (do_output_reload): Add assertion rejecting a
CALL_INSN.

From-SVN: r109697

gcc/ChangeLog
gcc/reload1.c

index e12842e4df8a63258c49d969a5425a710d1ecb12..57c19b9ea112c6ddd132319aedead54bcbfa46fc 100644 (file)
@@ -1,3 +1,8 @@
+2006-01-13  Ian Lance Taylor  <ian@airs.com>
+
+       * reload1.c (do_output_reload): Add assertion rejecting a
+       CALL_INSN.
+
 2006-01-13  Adam Nemet  <anemet@caviumnetworks.com>
 
        * combine.c (struct reg_stat): Add new fields truncation_label and
index 01943f3a7a015d980dcf0ec7742e3462a59ff8c4..02fda092605d376411f4475d85ab97ef382a745f 100644 (file)
@@ -7140,7 +7140,7 @@ do_output_reload (struct insn_chain *chain, struct reload *rl, int j)
     return;
 
   /* If is a JUMP_INSN, we can't support output reloads yet.  */
-  gcc_assert (!JUMP_P (insn));
+  gcc_assert (NONJUMP_INSN_P (insn));
 
   emit_output_reload_insns (chain, rld + j, j);
 }