clayborg added a comment.

Just questioning if we want to increase the size of the DIERef struct.



================
Comment at: source/Plugins/SymbolFile/DWARF/DIERef.h:47-48
+private:
+  unsigned m_section : 1;
+  dw_offset_t m_unit_offset;
+  dw_offset_t m_die_offset;
----------------
We we want this to be:
```
dw_offset_t m_section:1;
dw_offset_t m_unit_offset:31;
```

Otherwise we increase the size of the DIERef struct?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D63400/new/

https://reviews.llvm.org/D63400



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

Reply via email to