Tweaking a comment in the NSURL formatter for correctness - the code was doing the right thing, but the comment was highly misleading

llvm-svn: 170441
This commit is contained in:
Enrico Granata 2012-12-18 19:22:05 +00:00
parent 76bd3d8599
commit 0126132e2f
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,10 @@ class NSURLKnown_SummaryProvider:
# one pointer is the ISA
# then there is one more pointer and 8 bytes of plain data
# (which are also present on a 32-bit system)
# plus another pointer, and then the real data
# then there is a pointer to an NSString which is the url text
# optionally, the next pointer is another NSURL which is the "base"
# of this one when doing NSURLs composition (incidentally, NSURLs can
# recurse the base+text mechanism to any desired depth)
def offset_text(self):
logger = lldb.formatters.Logger.Logger()
return 24 if self.sys_params.is_64_bit else 16