aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/module.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cp/module.cc')
-rw-r--r--gcc/cp/module.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc
index 11eb6da..02b5af8 100644
--- a/gcc/cp/module.cc
+++ b/gcc/cp/module.cc
@@ -65,6 +65,9 @@ along with GCC; see the file COPYING3. If not see
#include "intl.h"
#include "langhooks.h"
+/* Id for dumping module information. */
+int module_dump_id;
+
/* What the current TU is. */
unsigned module_kind;
@@ -190,6 +193,11 @@ preprocessed_module (cpp_reader *)
}
void
+module_begin_main_file (cpp_reader *, line_maps *, const line_map_ordinary *)
+{
+}
+
+void
init_modules (cpp_reader *)
{
/* Do not turn on yet. */
@@ -207,3 +215,14 @@ void
fini_modules ()
{
}
+
+bool
+handle_module_option (unsigned, const char *, int)
+{
+ return false;
+}
+
+void
+module_preprocess_options (cpp_reader *)
+{
+}