diff options
Diffstat (limited to 'gcc/cp/module.cc')
-rw-r--r-- | gcc/cp/module.cc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc index dc4fa41..c98df14 100644 --- a/gcc/cp/module.cc +++ b/gcc/cp/module.cc @@ -135,12 +135,34 @@ set_defining_module (tree) { } +tree +get_originating_module_decl (tree decl) +{ + return decl; +} + void set_originating_module (tree, bool) { } void +lazy_load_binding (unsigned, tree, tree, binding_slot *) +{ +} + +void +lazy_load_members (tree) +{ +} + +bitmap +visible_instantiation_path (bitmap *) +{ + return nullptr; +} + +void import_module (module_state *, location_t, bool, tree, cpp_reader *) { } |