diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-07-19 19:48:13 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-07-19 19:48:13 +0000 |
commit | 4480530a0f9764a6ce69d9545a444e631e820edf (patch) | |
tree | 4469bec712bd4f403f8318ebf9baf74958763916 /lldb/source/Expression/IRForTarget.cpp | |
parent | 81ebc733b470ef111432657dda14707da9a9344d (diff) | |
download | bcm5719-llvm-4480530a0f9764a6ce69d9545a444e631e820edf.tar.gz bcm5719-llvm-4480530a0f9764a6ce69d9545a444e631e820edf.zip |
Patch by Matt Johnson to silence G++ warnings!
Used hand merge to apply the diffs. I did not apply the diffs for FormatManager.h and
the diffs for memberwise initialization for ValueObject.cpp because they changed since.
I will ask my colleague to apply them later.
llvm-svn: 135508
Diffstat (limited to 'lldb/source/Expression/IRForTarget.cpp')
-rw-r--r-- | lldb/source/Expression/IRForTarget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index e20af16f61d..6037cd0c342 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -52,16 +52,16 @@ IRForTarget::IRForTarget (lldb_private::ClangExpressionDeclMap *decl_map, ModulePass(ID), m_resolve_vars(resolve_vars), m_func_name(func_name), - m_decl_map(decl_map), m_module(NULL), + m_decl_map(decl_map), + m_data_allocator(data_allocator), m_CFStringCreateWithBytes(NULL), m_sel_registerName(NULL), + m_const_result(const_result), m_error_stream(error_stream), m_has_side_effects(false), m_result_store(NULL), m_result_is_pointer(false), - m_const_result(const_result), - m_data_allocator(data_allocator), m_reloc_placeholder(NULL) { } @@ -1918,7 +1918,7 @@ IRForTarget::UnfoldConstant(Constant *old_constant, Value *new_constant, Instruc ++ui) users.push_back(*ui); - for (int i = 0; + for (size_t i = 0; i < users.size(); ++i) { |