aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPer Bothner <bothner@gcc.gnu.org>1998-06-05 08:51:31 -0700
committerPer Bothner <bothner@gcc.gnu.org>1998-06-05 08:51:31 -0700
commit240661ba4d77b3cb0076d37594823b04ed777553 (patch)
tree41cf2078353e7e05ac2a41a23ab4c3e666d04217 /gcc
parent7fe90e7b3ed54fa33dcbfb9cfc428706d2d510fb (diff)
downloadgcc-240661ba4d77b3cb0076d37594823b04ed777553.zip
gcc-240661ba4d77b3cb0076d37594823b04ed777553.tar.gz
gcc-240661ba4d77b3cb0076d37594823b04ed777553.tar.bz2
g++spec (lang_specific_pre_link, [...]): Define - update needed by gcc.c change.
( * g++spec (lang_specific_pre_link, lang_specific_extra_ofiles): Define - update needed by gcc.c change. From-SVN: r20246
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/g++spec.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/cp/g++spec.c b/gcc/cp/g++spec.c
index 0d1b7c0..4ca3887 100644
--- a/gcc/cp/g++spec.c
+++ b/gcc/cp/g++spec.c
@@ -255,3 +255,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 C++. */
+{
+ return 0;
+}
+
+/* Number of extra output files that lang_specific_pre_link may generate. */
+int lang_specific_extra_ofiles = 0; /* Not used for C++. */