arichardson added inline comments. ================ Comment at: ELF/InputFiles.cpp:138 + for (const auto &Entry : CU->dies()) { + DWARFDie Die(&*CU, &Entry); + // Skip all tags that are not variables. ---------------- Maybe use `.get()` instead of `&*`? https://reviews.llvm.org/D44761