[lld] [llvm] [Symbolizer] Support for Missing Line Numbers. (PR #82240)

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Tue May 7 12:33:15 PDT 2024


================
@@ -50,6 +51,7 @@ struct DILineInfo {
   // DWARF-specific.
   uint32_t Discriminator = 0;
 
+  bool IsApproximatedLine = 0;
----------------
dwblaikie wrote:

use `false` rather than `0` for a `bool` literal. Perhaps it doesn't need a default value, if it's always initialized by the ctor anyway?

https://github.com/llvm/llvm-project/pull/82240


More information about the llvm-commits mailing list