[Lldb-commits] [PATCH] D57091: [www] Remove implemented Open Project

2019-01-24 Thread Kirill Bobyrev via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL352065: [www] Remove implemented Open Project (authored by omtcyfz, committed by ). Herald added a subscriber: llvm-commits. Changed prior to commit: https://reviews.llvm.org/D57091?vs=183071&id=183330#

[Lldb-commits] [PATCH] D57091: [www] Remove implemented Open Project

2019-01-23 Thread Kirill Bobyrev via Phabricator via lldb-commits
kbobyrev added a comment. @aprantl if there is still some work left for GSoC/potential contributors, feel free to mention it and then it should be just updated for the future. I couldn't infer whether there is still a chunk of work to be done from the project report, but you might have more inf

[Lldb-commits] [PATCH] D57091: [www] Remove implemented Open Project

2019-01-23 Thread Kirill Bobyrev via Phabricator via lldb-commits
kbobyrev created this revision. kbobyrev added a reviewer: aprantl. kbobyrev added a project: LLDB. "Open LLVM Projects" page is used by students willing to apply for Google Summer of Code, this patch updates the page by removing the "Reimplement LLDB's command-line commands using the public SB

[Lldb-commits] [PATCH] D42620: [lldb] Silence signed <-> unsigned integer comparison warning

2018-01-29 Thread Kirill Bobyrev via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL323645: [lldb] Silence signed <-> unsigned integer comparison warning (authored by omtcyfz, committed by ). Herald added a subscriber: llvm-commits. Changed prior to commit: https://reviews.llvm.org/D42

[Lldb-commits] [PATCH] D42620: [lldb] Silence signed <-> unsigned integer comparison warning

2018-01-29 Thread Kirill Bobyrev via Phabricator via lldb-commits
omtcyfz added a comment. @asmith Thanks! @davide Thanks for the input! I'll be able to do land it since I have commit access, thanks! https://reviews.llvm.org/D42620 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cg

[Lldb-commits] [PATCH] D42620: [lldb] Silence signed <-> unsigned integer comparison warning

2018-01-28 Thread Kirill Bobyrev via Phabricator via lldb-commits
omtcyfz created this revision. omtcyfz added reviewers: davide, asmith. `num_args` is unsigned integer, declared as below: uint32_t num_args = arg_enum->getChildCount(); Comparison with the signed `arg_idx` produces a warning when compiled with -Wsign-compare flag, this patch addresses this s