summaryrefslogtreecommitdiff
path: root/gcc/f/g77spec.c
diff options
context:
space:
mode:
authorbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-05 15:54:05 +0000
committerbothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-05 15:54:05 +0000
commit2cf47d0bce3cfecc55bdaeaec62f4672e7f68459 (patch)
tree5128358021e0ac88a5188e755a7ca46309f9a45d /gcc/f/g77spec.c
parent8230b238a24711ae17e49430a40b0171875864ec (diff)
downloadgcc-2cf47d0bce3cfecc55bdaeaec62f4672e7f68459.tar.gz
* g77spec (lang_specific_pre_link, lang_specific_extra_ofiles): Define - update needed by gcc.c change. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20248 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/g77spec.c')
-rw-r--r--gcc/f/g77spec.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/f/g77spec.c b/gcc/f/g77spec.c
index c45b1808418..5caca1de1e5 100644
--- a/gcc/f/g77spec.c
+++ b/gcc/f/g77spec.c
@@ -279,3 +279,12 @@ lang_specific_driver (fn, in_argc, in_argv, in_added_libraries)
*in_argv = arglist;
*in_added_libraries = added_libraries;
}
+
+/* Called before linking. Returns 0 on success and -1 on failure. */
+int lang_specific_pre_link () /* Not used for F77. */
+{
+ return 0;
+}
+
+/* Number of extra output files that lang_specific_pre_link may generate. */
+int lang_specific_extra_ofiles = 0; /* Not used for F77. */