Merged Eli Friedman's linux build changes where he added Makefile files that
enabled LLVM make style building and made this compile LLDB on Mac OS X. We
can now iterate on this to make the build work on both linux and macosx.
llvm-svn: 108009
diff --git a/lldb/source/Breakpoint/StoppointLocation.cpp b/lldb/source/Breakpoint/StoppointLocation.cpp
index 60280ef..8d7325f 100644
--- a/lldb/source/Breakpoint/StoppointLocation.cpp
+++ b/lldb/source/Breakpoint/StoppointLocation.cpp
@@ -22,21 +22,21 @@
//----------------------------------------------------------------------
StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware) :
m_loc_id(bid),
- m_byte_size(0),
m_addr(addr),
- m_hit_count(0),
m_hw_preferred(hardware),
- m_hw_index(LLDB_INVALID_INDEX32)
+ m_hw_index(LLDB_INVALID_INDEX32),
+ m_byte_size(0),
+ m_hit_count(0)
{
}
StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, size_t size, bool hardware) :
m_loc_id(bid),
- m_byte_size(size),
m_addr(addr),
- m_hit_count(0),
m_hw_preferred(hardware),
- m_hw_index(LLDB_INVALID_INDEX32)
+ m_hw_index(LLDB_INVALID_INDEX32),
+ m_byte_size(size),
+ m_hit_count(0)
{
}