Skip to content
Snippets Groups Projects
Commit d6277e1e authored by Zuzana Baranová's avatar Zuzana Baranová
Browse files

CC: Move the _cxx attribute from rt::NativeDiosCC into Native.

parent 2403e49e
No related branches found
No related tags found
No related merge requests found
......@@ -95,11 +95,13 @@ namespace divine::cc
virtual std::unique_ptr< llvm::Module > link_bitcode();
void construct_paired_files();
void print_info( std::string_view version );
void set_cxx( bool cxx ) { _cxx = cxx; }
cc::ParsedOpts _po;
PairedFiles _files;
std::vector< std::string > _ld_args;
cc::CC1 _clang;
bool _cxx;
~Native();
};
......
......@@ -39,9 +39,6 @@ struct NativeDiosCC : cc::Native
auto link_dios_native( bool cxx );
std::unique_ptr< llvm::Module > link_bitcode() override;
void link() override;
void set_cxx( bool cxx ) { _cxx = cxx; }
bool _cxx;
};
} // rt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment