* optabs.c (emit_libcall_block): Don't mark calls as CONST_CALL_P.
authorMark Mitchell <mark@codesourcery.com>
Fri, 11 May 2001 15:28:40 +0000 (15:28 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 11 May 2001 15:28:40 +0000 (15:28 +0000)
From-SVN: r41963

gcc/ChangeLog
gcc/optabs.c

index 2053f37be473850eb39040597a6363a85059f224..af101ea6897be2df0da624762ed14e1ae9fec0fd 100644 (file)
@@ -1,3 +1,7 @@
+2001-05-11  Mark Mitchell  <mark@codesourcery.com>
+
+       * optabs.c (emit_libcall_block): Don't mark calls as CONST_CALL_P.
+
 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * c-common.c (finish_label_expr): New function, lifted from
index 0403dbf17dc88fbebe0f6d81a225a14ae5e8f4d5..c28b4d97c77cba4557e69fdd30d5522cc7c4a789 100644 (file)
@@ -2826,14 +2826,13 @@ emit_libcall_block (insns, target, result, equiv)
   /* look for any CALL_INSNs in this sequence, and attach a REG_EH_REGION
      reg note to indicate that this call cannot throw or execute a nonlocal
      goto (unless there is already a REG_EH_REGION note, in which case
-     we update it).  Also set the CONST_CALL_P flag.  */
+     we update it).  */
 
   for (insn = insns; insn; insn = NEXT_INSN (insn))
     if (GET_CODE (insn) == CALL_INSN)
       {
        rtx note = find_reg_note (insn, REG_EH_REGION, NULL_RTX);
 
-       CONST_CALL_P (insn) = 1;
        if (note != 0)
          XEXP (note, 0) = GEN_INT (-1);
        else