ki.stfu marked an inline comment as done.

================
Comment at: source/Target/StackFrame.cpp:1425
@@ -1423,3 +1424,3 @@
 
-  if (offset >= pointee->GetByteSize()) {
+  if (offset > 0 && uint64_t(offset) >= pointee->GetByteSize()) {
     int64_t index = offset / pointee->GetByteSize();
----------------
Good point. Thanks!


https://reviews.llvm.org/D24331



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to