Commit 761a5bcd by Jim Wilson

(libcall_dead_p): Fail not abort for libcall that returns

value via invisible pointer.

From-SVN: r6748
parent 7238ce3a
......@@ -1736,8 +1736,11 @@ libcall_dead_p (x, needed, note, insn)
&& GET_CODE (SET_SRC (XVECEXP (call, 0, i))) == CALL)
break;
/* This may be a library call that is returning a value
via invisible pointer. Do nothing special, since
ordinary death handling can understand these insns. */
if (i < 0)
abort ();
return 0;
call = XVECEXP (call, 0, i);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment