summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2014-12-17 22:25:37 +0000
committerEric Christopher <echristo@gmail.com>2014-12-17 22:25:37 +0000
commitf70824428e3ce27f75361b6050236d7d2af37ff7 (patch)
treeee29e656bbf330c6ee1a1ea9e9fc92a914303d5a
parent140d41b791825eb29dcfcb81744ef7a87c554bba (diff)
downloadbcm5719-llvm-f70824428e3ce27f75361b6050236d7d2af37ff7.tar.gz
bcm5719-llvm-f70824428e3ce27f75361b6050236d7d2af37ff7.zip
Fix initialization order to match that of the source.
llvm-svn: 224467
-rw-r--r--lldb/source/Breakpoint/Breakpoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Breakpoint/Breakpoint.cpp b/lldb/source/Breakpoint/Breakpoint.cpp
index 3916b72e775..bc269cdb95a 100644
--- a/lldb/source/Breakpoint/Breakpoint.cpp
+++ b/lldb/source/Breakpoint/Breakpoint.cpp
@@ -69,10 +69,10 @@ Breakpoint::Breakpoint (Target &new_target, Breakpoint &source_bp) :
m_being_created(true),
m_hardware(source_bp.m_hardware),
m_target(new_target),
+ m_name_list (source_bp.m_name_list),
m_options (source_bp.m_options),
m_locations(*this),
- m_resolve_indirect_symbols(source_bp.m_resolve_indirect_symbols),
- m_name_list (source_bp.m_name_list)
+ m_resolve_indirect_symbols(source_bp.m_resolve_indirect_symbols)
{
// Now go through and copy the filter & resolver:
m_resolver_sp = source_bp.m_resolver_sp->CopyForBreakpoint(*this);
OpenPOWER on IntegriCloud