diff options
Diffstat (limited to 'gcc/cp/module.cc')
-rw-r--r-- | gcc/cp/module.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc index f250d6c..91a1681 100644 --- a/gcc/cp/module.cc +++ b/gcc/cp/module.cc @@ -64,3 +64,20 @@ along with GCC; see the file COPYING3. If not see #include "intl.h" #include "langhooks.h" +module_state * +get_module (tree, module_state *, bool) +{ + return nullptr; +} + +module_state * +preprocess_module (module_state *, unsigned, bool, bool, bool, cpp_reader *) +{ + return nullptr; +} + +void +preprocessed_module (cpp_reader *) +{ +} + |