summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/ValueObject.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2013-03-14 18:31:44 +0000
committerGreg Clayton <gclayton@apple.com>2013-03-14 18:31:44 +0000
commitfaac1118702d8fa7bbd639d23a2c9f79e4db2f0c (patch)
treeac277bdce3db205dab200956a7a23f09fdf9899f /lldb/source/Core/ValueObject.cpp
parent29a0da3551afa5cc9c172c7057d255eae8df0e83 (diff)
downloadbcm5719-llvm-faac1118702d8fa7bbd639d23a2c9f79e4db2f0c.tar.gz
bcm5719-llvm-faac1118702d8fa7bbd639d23a2c9f79e4db2f0c.zip
<rdar://problem/13421412>
Many "byte size" members and variables were using a mixture of uint32_t and size_t. Switching over to using uint64_t everywhere. llvm-svn: 177091
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
-rw-r--r--lldb/source/Core/ValueObject.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp
index 7891c26fafb..fb3c9b3c06c 100644
--- a/lldb/source/Core/ValueObject.cpp
+++ b/lldb/source/Core/ValueObject.cpp
@@ -998,7 +998,7 @@ ValueObject::GetPointeeData (DataExtractor& data,
return 0;
}
-size_t
+uint64_t
ValueObject::GetData (DataExtractor& data)
{
UpdateValueIfNeeded(false);
@@ -1717,7 +1717,7 @@ ValueObject::SetValueFromCString (const char *value_str, Error& error)
return false;
}
- uint32_t count = 0;
+ uint64_t count = 0;
Encoding encoding = ClangASTType::GetEncoding (GetClangType(), count);
const size_t byte_size = GetByteSize();
OpenPOWER on IntegriCloud