diff options
Diffstat (limited to 'lldb/source/Core/Address.cpp')
-rw-r--r-- | lldb/source/Core/Address.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/Address.cpp b/lldb/source/Core/Address.cpp index f3ea1718d6f..2ef5bbee836 100644 --- a/lldb/source/Core/Address.cpp +++ b/lldb/source/Core/Address.cpp @@ -235,7 +235,7 @@ Address::operator= (const Address& rhs) if (this != &rhs) { m_section_wp = rhs.m_section_wp; - m_offset = rhs.m_offset.load(); + m_offset = rhs.m_offset; } return *this; } @@ -429,7 +429,7 @@ Address::Dump (Stream *s, ExecutionContextScope *exe_scope, DumpStyle style, Dum if (section_sp) { section_sp->DumpName(s); - s->Printf (" + %" PRIu64, m_offset.load()); + s->Printf (" + %" PRIu64, m_offset); } else { |