diff options
author | Ed Maste <emaste@FreeBSD.org> | 2013-11-06 16:48:53 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2013-11-06 16:48:53 +0000 |
commit | f21a844f60ae6c74fcf1fddca32461acce3c1ee0 (patch) | |
tree | 56d79f94966870db1cecd65a7264510a25fd1cba /source/API/SBFunction.cpp | |
parent | 37d22554be9f5a677dad2a95b7ef22fe59c66a8a (diff) |
Notes
Diffstat (limited to 'source/API/SBFunction.cpp')
-rw-r--r-- | source/API/SBFunction.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/API/SBFunction.cpp b/source/API/SBFunction.cpp index 914d2d77f3ec1..bb7ea2e9f202a 100644 --- a/source/API/SBFunction.cpp +++ b/source/API/SBFunction.cpp @@ -143,11 +143,13 @@ SBFunction::GetInstructions (SBTarget target, const char *flavor) ModuleSP module_sp (m_opaque_ptr->GetAddressRange().GetBaseAddress().GetModule()); if (module_sp) { + const bool prefer_file_cache = false; sb_instructions.SetDisassembler (Disassembler::DisassembleRange (module_sp->GetArchitecture(), NULL, flavor, exe_ctx, - m_opaque_ptr->GetAddressRange())); + m_opaque_ptr->GetAddressRange(), + prefer_file_cache)); } } return sb_instructions; |