diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-09-20 09:09:05 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-09-20 09:09:05 +0000 |
| commit | f9a07e9f8debaf28d289d1fc0403f9f06043d977 (patch) | |
| tree | 182808c60c3c6380befb1842e660306a75575eed /lldb/source/Plugins/Platform/Windows | |
| parent | cd53b7f54efb22c6bf52cab1fbf95805033ca018 (diff) | |
| download | bcm5719-llvm-f9a07e9f8debaf28d289d1fc0403f9f06043d977.tar.gz bcm5719-llvm-f9a07e9f8debaf28d289d1fc0403f9f06043d977.zip | |
[NFC] Turn "load dependent files" boolean into an enum
This is an NFC commit to refactor the "load dependent files" parameter
from a boolean to an enum value. We want to be able to specify a
default, in which case we decide whether or not to load the dependent
files based on whether the target is an executable or not (i.e. a
dylib).
This is a dependency for D51934.
Differential revision: https://reviews.llvm.org/D51859
llvm-svn: 342633
Diffstat (limited to 'lldb/source/Plugins/Platform/Windows')
| -rw-r--r-- | lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp b/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp index 45e906f88e0..966d1c53cfb 100644 --- a/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp +++ b/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp @@ -470,8 +470,8 @@ lldb::ProcessSP PlatformWindows::Attach(ProcessAttachInfo &attach_info, FileSpec emptyFileSpec; ArchSpec emptyArchSpec; - error = debugger.GetTargetList().CreateTarget(debugger, "", "", false, - nullptr, new_target_sp); + error = debugger.GetTargetList().CreateTarget( + debugger, "", "", eLoadDependentsNo, nullptr, new_target_sp); target = new_target_sp.get(); } |

