Update ExpressionSourceCode::GetText() to match the

name of the iOS simulator platform which was changed
in r181631.
<rdar://problem/19200084> 

llvm-svn: 226789
This commit is contained in:
Jason Molenda 2015-01-22 06:31:58 +00:00
parent b57056f483
commit 07fd86a9df
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ extern "C"
bool ExpressionSourceCode::GetText (std::string &text, lldb::LanguageType wrapping_language, bool const_object, bool static_method, ExecutionContext &exe_ctx) const
{
const char *target_specific_defines = "typedef signed char BOOL;\n";
static ConstString g_platform_ios_simulator ("PlatformiOSSimulator");
static ConstString g_platform_ios_simulator ("ios-simulator");
if (Target *target = exe_ctx.GetTargetPtr())
{