File tree 2 files changed +0
-15
lines changed
2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -290,9 +290,6 @@ class LLDB_API SBModule {
290
290
lldb::SBAddress GetObjectFileHeaderAddress () const ;
291
291
lldb::SBAddress GetObjectFileEntryPointAddress () const ;
292
292
293
- // / Get if the symbol file for this module is loaded.
294
- bool IsDebugInfoLoaded () const ;
295
-
296
293
// / Get the number of global modules.
297
294
static uint32_t GetNumberAllocatedModules ();
298
295
Original file line number Diff line number Diff line change @@ -659,18 +659,6 @@ lldb::SBAddress SBModule::GetObjectFileEntryPointAddress() const {
659
659
return sb_addr;
660
660
}
661
661
662
- bool SBModule::IsDebugInfoLoaded () const {
663
- LLDB_INSTRUMENT_VA (this );
664
-
665
- ModuleSP module_sp (GetSP ());
666
- if (module_sp) {
667
- SymbolFile *sym_file = module_sp->GetSymbolFile (/* create=*/ false );
668
- return sym_file && sym_file->GetLoadDebugInfoEnabled ();
669
- }
670
-
671
- return false ;
672
- }
673
-
674
662
uint32_t SBModule::GetNumberAllocatedModules () {
675
663
LLDB_INSTRUMENT ();
676
664
You can’t perform that action at this time.
0 commit comments