<rdar://problem/13100435>

Don't discount regions that vmmap is not discounting.

llvm-svn: 177202
diff --git a/lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp b/lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp
index fbcda3f..6ef4342 100644
--- a/lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp
+++ b/lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp
@@ -249,10 +249,7 @@
             // Don't count malloc stack logging data in the TOTAL VM usage lines.
             if (info.user_tag == VM_MEMORY_ANALYSIS_TOOL)
                 should_count = false;
-            // Don't count system shared library region not used by this process.
-            if (address >= SHARED_REGION_BASE && address < (SHARED_REGION_BASE + SHARED_REGION_SIZE))
-                should_count = false;
-
+            
             address = address+size;
         }