[Lldb-commits] [PATCH] D112931: Fix mixed disassembly showing source lines for "line 0"

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 1 13:31:16 PDT 2021


clayborg added inline comments.


================
Comment at: lldb/test/Shell/Commands/command-disassemble-mixed.c:11-18
+int main(int argc, char **argv)
+{
+  int i;
+
+  for (i=0; i < 10; ++i) ;
+
+  return 0;
----------------
are we guaranteed to get some debug info with line zero in it with this example?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D112931



More information about the lldb-commits mailing list