Commit 0e672124 authored by Jonas Devlieghere's avatar Jonas Devlieghere
Browse files

Revert "[lldb/Reproducers] Assert when trying to get object for invalid index."

Apparently this is not doing what I thought it was doing...
parent 623cff81
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -15,7 +15,6 @@ using namespace lldb_private;
using namespace lldb_private::repro;

void *IndexToObject::GetObjectForIndexImpl(unsigned idx) {
  assert(m_mapping.count(idx) && "No object for index");
  return m_mapping.lookup(idx);
}