[Lldb-commits] [PATCH] D68541: Implement 'up' and 'down' shortcuts in lldb gui
Greg Clayton via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat Jul 25 15:54:26 PDT 2020
clayborg added a comment.
Yikes, sorry for not responding for so long. In the fall I was out on medical leave due to a head injury. Please feel free to ping more often if I do this again. I commented in the other patches (one accepted, and questions in the other). Let me know your thoughts.
================
Comment at: lldb/source/Core/IOHandler.cpp:4433
+ --frame_idx;
+ if( thread->SetSelectedFrameByIndex( frame_idx, true ))
+ exe_ctx.SetFrameSP(thread->GetSelectedFrame());
----------------
Clang format this?
```
if (thread->SetSelectedFrameByIndex(frame_idx, true))
```
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D68541/new/
https://reviews.llvm.org/D68541
More information about the lldb-commits
mailing list