Commit bbecc1d6 by Jim Wilson Committed by Jim Wilson

Fix build failure when using SGI Irix6 cc.

	* mn10200/mn10200.md (addsi3, subsi3, ashlsi3, lshrsi3, ashrsi3):
	Delete emit_library_call_value declaration.

From-SVN: r25803
parent 3fdc651f
Tue Mar 16 13:44:50 1999 Jim Wilson <wilson@cygnus.com>
* mn10200/mn10200.md (addsi3, subsi3, ashlsi3, lshrsi3, ashrsi3):
Delete emit_library_call_value declaration.
1999-03-16 16:06 -0500 Zack Weinberg <zack@rabi.columbia.edu>
* cppfiles.c (read_and_prescan): Map backslash-newline to '\r'
......
......@@ -399,7 +399,6 @@
else if (rtx_equal_function_value_matters)
{
rtx ret, insns;
extern rtx emit_library_call_value ();
start_sequence ();
ret = emit_library_call_value (gen_rtx (SYMBOL_REF, Pmode, \"__addsi3\"),
......@@ -477,7 +476,6 @@
if (rtx_equal_function_value_matters)
{
rtx ret, insns;
extern rtx emit_library_call_value ();
start_sequence ();
ret = emit_library_call_value (gen_rtx (SYMBOL_REF, Pmode, \"__subsi3\"),
......@@ -1498,7 +1496,6 @@
|| INTVAL (operands[2]) <= 15))
{
rtx ret, insns;
extern rtx emit_library_call_value ();
start_sequence ();
ret = emit_library_call_value (gen_rtx (SYMBOL_REF, Pmode, \"__ashlsi3\"),
......@@ -1557,7 +1554,6 @@
|| INTVAL (operands[2]) <= 15))
{
rtx ret, insns;
extern rtx emit_library_call_value ();
start_sequence ();
ret = emit_library_call_value (gen_rtx (SYMBOL_REF, Pmode, \"__lshrsi3\"),
......@@ -1616,7 +1612,6 @@
|| INTVAL (operands[2]) <= 15))
{
rtx ret, insns;
extern rtx emit_library_call_value ();
start_sequence ();
ret = emit_library_call_value (gen_rtx (SYMBOL_REF, Pmode, \"__ashrsi3\"),
......
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