[Lldb-commits] [PATCH] D110011: [lldb] Add --stack option to `target symbols add` command
Dave Lee via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 17 16:05:26 PDT 2021
kastiglione added inline comments.
================
Comment at: lldb/source/Commands/CommandObjectTarget.cpp:4300-4301
+ current_frame_flush))
+ symbols_found = true;
+ flush |= current_frame_flush;
+ }
----------------
do you need the separate variable? can it be:
```
flush |= true;
```
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D110011/new/
https://reviews.llvm.org/D110011
More information about the lldb-commits
mailing list