summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/SymbolFile
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/Plugins/SymbolFile
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/Plugins/SymbolFile')
-rw-r--r--lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
index ba286997dd2..53e99d746d9 100644
--- a/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+++ b/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -5442,7 +5442,7 @@ SymbolFileDWARF::ParseType (const SymbolContext& sc, DWARFCompileUnit* dwarf_cu,
const char *type_name_cstr = NULL;
ConstString type_name_const_str;
Type::ResolveState resolve_state = Type::eResolveStateUnresolved;
- size_t byte_size = 0;
+ uint64_t byte_size = 0;
Declaration decl;
Type::EncodingDataType encoding_data_type = Type::eEncodingIsUID;
OpenPOWER on IntegriCloud