[Lldb-commits] [PATCH] D131983: [LLDB][NFC] Fix optons parsing and misc. reliability in CommandObjectThread

Will Hawkins via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 16 15:33:30 PDT 2022


hawkinsw added inline comments.


================
Comment at: lldb/source/Commands/CommandObjectThread.cpp:66
+      case 'c':
+        if (option_arg.getAsInteger(0, m_count) || (m_count < 0)) {
           m_count = UINT32_MAX;
----------------
Hope this doesn't screw up Phabricator, but I just wanted to confirm with @clayborg that, yes, that is specified: 

http://eel.is/c++draft/expr.log.and


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D131983



More information about the lldb-commits mailing list