forked from OSchip/llvm-project
Add /* DISABLES CODE */ annotation before if (0) to mark it as intentional.
llvm-svn: 219913
This commit is contained in:
parent
a68e4dcd7e
commit
97e704b2af
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue