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
This commit is contained in:
Greg Clayton
2010-07-09 20:39:50 +00:00
parent 2a5725b1a3
commit c982c768d2
151 changed files with 1440 additions and 1888 deletions

View File

@@ -187,7 +187,7 @@ SBFrame::LookupVar (const char *var_name)
const uint32_t num_variables = variable_list.GetSize();
bool found = false;
for (int i = 0; i < num_variables && !found; ++i)
for (uint32_t i = 0; i < num_variables && !found; ++i)
{
var_sp = variable_list.GetVariableAtIndex(i);
if (var_sp
@@ -231,7 +231,7 @@ SBFrame::LookupVarInScope (const char *var_name, const char *scope)
const uint32_t num_variables = variable_list.GetSize();
bool found = false;
for (int i = 0; i < num_variables && !found; ++i)
for (uint32_t i = 0; i < num_variables && !found; ++i)
{
var_sp = variable_list.GetVariableAtIndex(i);
if (var_sp
@@ -331,6 +331,9 @@ SBFrame::GetVariables (bool arguments,
case eValueTypeVariableLocal:
add_variable = locals;
break;
default:
break;
}
if (add_variable)
{