diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-16 13:50:10 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-16 13:50:10 +0000 |
commit | 3549f6070a6c42ddcba60043510da1b0d8bae693 (patch) | |
tree | 22f08923677eb5cd7b62e0a532a31d55ab08ec5a /gcc/config/mn10200 | |
parent | e3630c4b41e3c2ed124dd1b28c5782ae245b6422 (diff) | |
download | gcc-3549f6070a6c42ddcba60043510da1b0d8bae693.tar.gz |
Fix build failure when using SGI Irix6 cc.
* mn10200/mn10200.md (addsi3, subsi3, ashlsi3, lshrsi3, ashrsi3):
Delete emit_library_call_value declaration.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25803 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mn10200')
-rw-r--r-- | gcc/config/mn10200/mn10200.md | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/config/mn10200/mn10200.md b/gcc/config/mn10200/mn10200.md index c0149d8ab00..30ff23dd7c4 100644 --- a/gcc/config/mn10200/mn10200.md +++ b/gcc/config/mn10200/mn10200.md @@ -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\"), |