summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2014-10-16 08:07:20 +0000
committerJason Molenda <jmolenda@apple.com>2014-10-16 08:07:20 +0000
commit97e704b2af298eb4dd94ae6dcebbc6a856c2e8f8 (patch)
tree5d5ecca7b9afff707e0188586b7d7bcfe92105e1
parenta68e4dcd7ebd42d885d1f8d5a8fb86031b5586b3 (diff)
downloadbcm5719-llvm-97e704b2af298eb4dd94ae6dcebbc6a856c2e8f8.tar.gz
bcm5719-llvm-97e704b2af298eb4dd94ae6dcebbc6a856c2e8f8.zip
Add /* DISABLES CODE */ annotation before if (0) to mark it as intentional.
llvm-svn: 219913
-rw-r--r--lldb/source/Target/Thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index 4171cc709ad..50e6f669ced 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -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)
OpenPOWER on IntegriCloud