[PATCH] D149058: [BPF][DebugInfo] Use .BPF.ext for line info when DWARF is not available

Fangrui Song via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 22 18:25:54 PDT 2023


MaskRay added a comment.

Apologies for my slow response. Reading...



================
Comment at: llvm/include/llvm/DebugInfo/BTF/BTF.h:248
                         ///  col num: line_col & 0x3ff
+  uint32_t getLine() { return LineCol >> 10; }
+  uint32_t getCol() { return LineCol & 0x3ff; }
----------------
ditto below


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D149058



More information about the llvm-commits mailing list