Add /* DISABLES CODE */ annotation before if (0) to mark it as intentional.
authorJason Molenda <jmolenda@apple.com>
Thu, 16 Oct 2014 08:07:20 +0000 (08:07 +0000)
committerJason Molenda <jmolenda@apple.com>
Thu, 16 Oct 2014 08:07:20 +0000 (08:07 +0000)
llvm-svn: 219913

lldb/source/Target/Thread.cpp

index 4171cc7..50e6f66 100644 (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)