Add /* DISABLES CODE */ annotation before if (0) to mark it as intentional.

llvm-svn: 219913
This commit is contained in:
Jason Molenda 2014-10-16 08:07:20 +00:00
parent a68e4dcd7e
commit 97e704b2af
1 changed files with 1 additions and 1 deletions

View File

@ -1860,7 +1860,7 @@ Thread::ReturnFromFrame (lldb::StackFrameSP frame_sp, lldb::ValueObjectSP return
// FIXME: ValueObject::Cast doesn't currently work correctly, at least not for scalars.
// Turn that back on when that works.
if (0 && sc.function != NULL)
if (/* DISABLES CODE */ (0) && sc.function != NULL)
{
Type *function_type = sc.function->GetType();
if (function_type)