[Lldb-commits] [lldb] c3a3e65 - Revert "[lldb] Fix that the embedded Python REPL crashes if it receives SIGINT"

2021-11-13 Thread Raphael Isemann via lldb-commits
Author: Raphael Isemann Date: 2021-11-13T18:18:24+01:00 New Revision: c3a3e65ecc082542080376e917d9c57d22901f6b URL: https://github.com/llvm/llvm-project/commit/c3a3e65ecc082542080376e917d9c57d22901f6b DIFF: https://github.com/llvm/llvm-project/commit/c3a3e65ecc082542080376e917d9c57d22901f6b.dif

[Lldb-commits] [PATCH] D113760: [formatters] Add a libstdcpp formatter for for unordered_map, unordered_set, unordered_multimap, unordered_multiset

2021-11-13 Thread Danil Stefaniuc via Phabricator via lldb-commits
danilashtefan updated this revision to Diff 387022. danilashtefan added a comment. Cosmetic change Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D113760/new/ https://reviews.llvm.org/D113760 Files: lldb/examples/synthetic/gnu_libstdcpp.py lldb/

[Lldb-commits] [PATCH] D113760: [formatters] Add a libstdcpp formatter for for unordered_map, unordered_set, unordered_multimap, unordered_multiset

2021-11-13 Thread Danil Stefaniuc via Phabricator via lldb-commits
danilashtefan added a comment. Hi Walter, Thank you for the hints. Everything works now, including the string case. There was a small difficulty with set case, but then I figured out that for set case I need to take not the 5th, but 4th template argument. I will be waiting for your comments. A

[Lldb-commits] [PATCH] D113760: [formatters] Draft diff for unordered_map libstdcpp formatter

2021-11-13 Thread Danil Stefaniuc via Phabricator via lldb-commits
danilashtefan updated this revision to Diff 387020. danilashtefan added a comment. All the changes are done and tests pass Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D113760/new/ https://reviews.llvm.org/D113760 Files: lldb/examples/synthetic/