Comment changes.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@161787 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/StopInfo.cpp b/source/Target/StopInfo.cpp
index a902ee8..6beec28 100644
--- a/source/Target/StopInfo.cpp
+++ b/source/Target/StopInfo.cpp
@@ -500,6 +500,7 @@
             {
                 if (!wp_sp->IsWatchVariable())
                 {
+                    // We are not watching a variable, just read from the process memory for the watched location.
                     assert (process);
                     Error error;
                     uint64_t val = process->ReadUnsignedIntegerFromMemory(wp_sp->GetLoadAddress(),
@@ -517,7 +518,7 @@
                 }
                 else if (!wp_sp->GetWatchSpec().empty())
                 {
-                    // Things have checked out ok...
+                    // Use our frame to evaluate the variable expression.
                     Error error;
                     uint32_t expr_path_options = StackFrame::eExpressionPathOptionCheckPtrVsMember |
                                                  StackFrame::eExpressionPathOptionsAllowDirectIVarAccess;