aboutsummaryrefslogtreecommitdiff
path: root/gcc/common/common-targhooks.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/common/common-targhooks.cc')
-rw-r--r--gcc/common/common-targhooks.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/gcc/common/common-targhooks.cc b/gcc/common/common-targhooks.cc
index 46f5c61..7499be2 100644
--- a/gcc/common/common-targhooks.cc
+++ b/gcc/common/common-targhooks.cc
@@ -90,3 +90,18 @@ const struct default_options empty_optimization_table[] =
{
{ OPT_LEVELS_NONE, 0, NULL, 0 }
};
+
+/* Default version of TARGET_COMPUTE_MULTILIB. */
+const char *
+default_compute_multilib(
+ const struct switchstr *,
+ int,
+ const char *multilib,
+ const char *,
+ const char *,
+ const char *,
+ const char *,
+ const char *)
+{
+ return multilib;
+}